diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-09-23 00:15:09 +0200 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2019-09-23 00:15:09 +0200 |
commit | 4e7dc15fa5545f47d5b2831ea19e2e88190d324d (patch) | |
tree | e1086d184aa7e20f3e64ada5660339564aba5612 /community/gnome-system-monitor | |
parent | d995d1f1223a59a91239ceb6b29718fd7b683d90 (diff) | |
download | aports-4e7dc15fa5545f47d5b2831ea19e2e88190d324d.tar.bz2 aports-4e7dc15fa5545f47d5b2831ea19e2e88190d324d.tar.xz |
community/gnome-system-monitor: move from testing
Diffstat (limited to 'community/gnome-system-monitor')
-rw-r--r-- | community/gnome-system-monitor/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/gnome-system-monitor/APKBUILD b/community/gnome-system-monitor/APKBUILD new file mode 100644 index 0000000000..5ab13bc538 --- /dev/null +++ b/community/gnome-system-monitor/APKBUILD @@ -0,0 +1,34 @@ +# Maintainer: Rasmus Thomsen <oss@cogitri.dev> +pkgname=gnome-system-monitor +pkgver=3.32.1 +pkgrel=0 +pkgdesc="GNOME system monitor" +url="https://www.gnome.org/" +arch="all !s390x" +license="GPL-2.0-or-later" +makedepends="gnome-desktop-dev libgtop-dev gtkmm3-dev + libxml2-dev librsvg-dev itstool libxml2-utils libxslt + libgtop-dev meson polkit-dev" +subpackages="$pkgname-doc $pkgname-lang" +source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" + +build() { + meson \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --datadir=/usr/share \ + -Dsystemd=false \ + output . + ninja -C output +} + +check() { + ninja -C output test +} + +package() { + DESTDIR="$pkgdir" ninja -C output install +} + +sha512sums="badfb98e4508096336bba4be79ce359cf4363649e97c1da534ed96a04de4bc57e12b84ed75bfa9086e00b61b6558ee4af25eee14f0d2636d3ee0b62956122cbd gnome-system-monitor-3.32.1.tar.xz" |