aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprspkt <prspkt@protonmail.com>2019-02-20 11:21:13 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2019-02-26 20:54:58 +0000
commit01c94d1bc583cae3481d130214bf43340989971b (patch)
tree64533caccd34476e2598778a2003e90afd9a873c
parent1c47581c494397cbee7c06ceecf34ec1e9635718 (diff)
downloadalpine_aports-01c94d1bc583cae3481d130214bf43340989971b.tar.bz2
alpine_aports-01c94d1bc583cae3481d130214bf43340989971b.tar.xz
alpine_aports-01c94d1bc583cae3481d130214bf43340989971b.zip
main/xev: clarify license, modernize
-rw-r--r--main/xev/APKBUILD11
1 files changed, 5 insertions, 6 deletions
diff --git a/main/xev/APKBUILD b/main/xev/APKBUILD
index edfd97e35b..4b8f90d680 100644
--- a/main/xev/APKBUILD
+++ b/main/xev/APKBUILD
@@ -2,10 +2,10 @@
2pkgname=xev 2pkgname=xev
3pkgver=1.2.3 3pkgver=1.2.3
4pkgrel=0 4pkgrel=0
5pkgdesc="print contents of X events" 5pkgdesc="Print contents of X events"
6url="http://xorg.freedesktop.org/" 6url="http://xorg.freedesktop.org/"
7arch="all" 7arch="all"
8license="custom" 8license="MIT"
9subpackages="$pkgname-doc" 9subpackages="$pkgname-doc"
10makedepends="libx11-dev libxrandr-dev" 10makedepends="libx11-dev libxrandr-dev"
11depends= 11depends=
@@ -19,14 +19,13 @@ build() {
19 --build=$CBUILD \ 19 --build=$CBUILD \
20 --host=$CHOST \ 20 --host=$CHOST \
21 --prefix=/usr \ 21 --prefix=/usr \
22 --mandir=/usr/share/man \ 22 --mandir=/usr/share/man
23 || return 1 23 make
24 make || return 1
25} 24}
26 25
27package() { 26package() {
28 cd "$builddir" 27 cd "$builddir"
29 make DESTDIR="$pkgdir" install || return 1 28 make DESTDIR="$pkgdir" install
30} 29}
31 30
32sha512sums="47cc7ac096e77cfa4e687914d767263cf3e1dca5bffd0f68c7ba0fe751b248c8a16525bd2da4d6efa0ea8d637831c893d41c9687cace4aaa9c0909a45ef1943e xev-1.2.3.tar.bz2" 31sha512sums="47cc7ac096e77cfa4e687914d767263cf3e1dca5bffd0f68c7ba0fe751b248c8a16525bd2da4d6efa0ea8d637831c893d41c9687cace4aaa9c0909a45ef1943e xev-1.2.3.tar.bz2"