mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
634 B
Bash
28 lines
634 B
Bash
# Maintainer: Caleb Maclennan <caleb@alerque.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable lto
|
|
|
|
pkgname=btop
|
|
pkgver=1.0.20
|
|
pkgrel=1
|
|
pkgdesc='A monitor of system resourecs, bpytop ported to C++'
|
|
arch=(x86_64 aarch64)
|
|
url="https://github.com/aristocratos/$pkgname"
|
|
license=(Apache)
|
|
depends=(gcc-libs)
|
|
_archive="$pkgname-$pkgver"
|
|
source=("$_archive.tar.gz::$url/archive/v$pkgver.tar.gz")
|
|
sha256sums=('8f1c863f8a9d7da300be33be850c132a3cd24d483554b22774ce687068163a99')
|
|
|
|
build() {
|
|
cd "$_archive"
|
|
sed -i 's/-flto\S*//' Makefile
|
|
make all
|
|
}
|
|
|
|
package() {
|
|
cd "$_archive"
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install
|
|
}
|
|
|