diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-07-05 13:52:23 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-05 14:38:56 -0300 |
commit | 48f827aa72d4ad2debe0757746fcea8a7b4e63e1 (patch) | |
tree | 7b0b0a029d872d4f06201ad2fefea7a96dc8b520 | |
parent | b14b43a11e068de0025625b57a257cb39a58592a (diff) | |
download | aports-48f827aa72d4ad2debe0757746fcea8a7b4e63e1.tar.gz aports-48f827aa72d4ad2debe0757746fcea8a7b4e63e1.tar.bz2 aports-48f827aa72d4ad2debe0757746fcea8a7b4e63e1.tar.xz |
community/xfce4-cpugraph-plugin: upgrade to 1.1.0
-rw-r--r-- | community/xfce4-cpugraph-plugin/APKBUILD | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/community/xfce4-cpugraph-plugin/APKBUILD b/community/xfce4-cpugraph-plugin/APKBUILD index d12ca742fec..260a06d2c1a 100644 --- a/community/xfce4-cpugraph-plugin/APKBUILD +++ b/community/xfce4-cpugraph-plugin/APKBUILD @@ -1,33 +1,17 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=xfce4-cpugraph-plugin -pkgver=1.0.5 -pkgrel=1 +pkgver=1.1.0 +pkgrel=0 pkgdesc="CPU monitor for the Xfce panel" url="http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin" arch="all" license="GPL-2.0-or-later" -depends="" makedepends="libxfce4ui-dev xfce4-panel-dev" -install="" subpackages="$pkgname-lang" source="https://archive.xfce.org/src/panel-plugins/xfce4-cpugraph-plugin/${pkgver%.*}/xfce4-cpugraph-plugin-$pkgver.tar.bz2" -_builddir="$srcdir"/xfce4-cpugraph-plugin-$pkgver - -prepare() { - local i - cd "$_builddir" - update_config_sub || return 1 - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - build() { - cd "$_builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -35,14 +19,12 @@ build() { --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ - --localstatedir=/var \ - || return 1 - make || return 1 + --localstatedir=/var + make } package() { - cd "$_builddir" - make -j1 DESTDIR="$pkgdir" install || return 1 + make -j1 DESTDIR="$pkgdir" install } -sha512sums="3d1246958dd30638104f14a8b0078e25c05b67b42da953a97cb51d2b04e70d3f1da9d42ca4f4575b7114bce5abc4cb94d598737631536c0575b55d9a391e210a xfce4-cpugraph-plugin-1.0.5.tar.bz2" +sha512sums="c928baac776517da8929b8ce3842be7e02a2b3394b7cc848028d1720ca611e1aa4ef706bd00736fecfed0b3b2d0cce94c09b0f905a226db5e50c036dabb8df2a xfce4-cpugraph-plugin-1.1.0.tar.bz2" |