diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-06-14 19:23:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-06-14 20:24:40 +0000 |
commit | e6390bb675e3591735716d38e162fc5a801c2615 (patch) | |
tree | c80b9d6e0ec8b24a4d5a07e1ad4be19b2cc80043 /main/xhost | |
parent | 990ed0a1b7f7276ace4b4acaa2e85f4c4345401c (diff) | |
download | aports-e6390bb675e3591735716d38e162fc5a801c2615.tar.bz2 aports-e6390bb675e3591735716d38e162fc5a801c2615.tar.xz |
main/xhost: upgrade to 1.0.7
Diffstat (limited to 'main/xhost')
-rw-r--r-- | main/xhost/APKBUILD | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/main/xhost/APKBUILD b/main/xhost/APKBUILD index fc74e5e101..77bc0cd73e 100644 --- a/main/xhost/APKBUILD +++ b/main/xhost/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=xhost -pkgver=1.0.3 -pkgrel=2 +pkgver=1.0.7 +pkgrel=0 pkgdesc="Controls host and/or user access to a running X server." url="http://xorg.freedesktop.org/" arch="all" @@ -11,15 +11,10 @@ depends= makedepends="libx11-dev libxmu-dev libxau-dev" source="http://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" -_builddir="$srcdir/$pkgname-$pkgver" - -prepare() { - cd "$_builddir" - update_config_sub || return 1 -} +builddir="$srcdir/$pkgname-$pkgver" build () { - cd "$_builddir" + cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -30,7 +25,7 @@ build () { } package() { - cd "$_builddir" + cd "$builddir" make DESTDIR="$pkgdir" install || return 1 } -sha512sums="fb80af586b4707c0db99e4fb2785e70ef1479c5b873f4f56be251eb92bb1cc158796517e422eafa1405fdf2ed8de0db4631a3fa3a3cf89b08fe294dd8592440f xhost-1.0.3.tar.bz2" +sha512sums="670a8c97291565f6c36c94e135f7bd60a572bb42b4fca9d2460823db0d0576187c64f9b876ed60d348029d3f74a732862eea4ce889a6b6b9c97665746a38b1d7 xhost-1.0.7.tar.bz2" |