[arch-commits] Commit in (btop btop/repos btop/trunk btop/trunk/PKGBUILD)

Caleb Maclennan alerque at gemini.archlinux.org
Tue Sep 28 12:41:12 UTC 2021


    Date: Tuesday, September 28, 2021 @ 12:41:12
  Author: alerque
Revision: 1025867

Migrate btop from AUR

Added:
  btop/
  btop/repos/
  btop/trunk/
  btop/trunk/PKGBUILD

----------+
 PKGBUILD |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

Added: btop/trunk/PKGBUILD
===================================================================
--- btop/trunk/PKGBUILD	                        (rev 0)
+++ btop/trunk/PKGBUILD	2021-09-28 12:41:12 UTC (rev 1025867)
@@ -0,0 +1,24 @@
+# Maintainer: Caleb Maclennan <caleb at alerque.com>
+
+pkgname=btop
+pkgver=1.0.9
+pkgrel=3
+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=('3eadf77130038738fce938903abbeeafe8140228899ec2918eb985cd30827082')
+
+build() {
+	cd "$_archive"
+	make all
+}
+
+package() {
+	cd "$_archive"
+	make DESTDIR="$pkgdir" PREFIX=/usr install
+}
+



More information about the arch-commits mailing list