diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-06-14 19:37:49 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-06-14 20:24:41 +0000 |
commit | e726a367dde062d28351dc65e26a88be19d72f0a (patch) | |
tree | b3aad65a5de3bcbfbef7f0f810acda2a50f383a1 /main/xev | |
parent | 6455cb5933e11ec091a87e430e3281a9fb9a2596 (diff) | |
download | aports-e726a367dde062d28351dc65e26a88be19d72f0a.tar.bz2 aports-e726a367dde062d28351dc65e26a88be19d72f0a.tar.xz |
main/xev: upgrade to 1.2.2
Diffstat (limited to 'main/xev')
-rw-r--r-- | main/xev/APKBUILD | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/main/xev/APKBUILD b/main/xev/APKBUILD index f533a37707..5791e50665 100644 --- a/main/xev/APKBUILD +++ b/main/xev/APKBUILD @@ -1,24 +1,20 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=xev -pkgver=1.0.3 -pkgrel=2 +pkgver=1.2.2 +pkgrel=0 pkgdesc="print contents of X events" url="http://xorg.freedesktop.org/" arch="all" license="custom" subpackages="$pkgname-doc" -makedepends="libx11-dev" +makedepends="libx11-dev libxrandr-dev" depends= 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 \ @@ -29,10 +25,8 @@ build() { } package() { - cd "$_builddir" + cd "$builddir" make DESTDIR="$pkgdir" install || return 1 } -md5sums="a9532c3d1683c99bb5df1895cb3a60b1 xev-1.0.3.tar.bz2" -sha256sums="d4ac7ae154ee9733be27a5f55586abb9362c768f5fb8a4fc7fd2645100a9313a xev-1.0.3.tar.bz2" -sha512sums="b4668691ffa8a9687cc3709da6a321e43b349ba2733c5e57977c1712a68007295c1ec4984f81f0559bb4c8c4a90720a02797c1163baba4d309f2e1cdb25ac17e xev-1.0.3.tar.bz2" +sha512sums="453fc18072e4d4fd088a1b2e918f3772aaa2c56b36c082deb41ec4d434d1579de75f447fc4e0507086c170152e02d6db8b60dc7fd87ae18a2e817448bd628fca xev-1.2.2.tar.bz2" |