diff options
author | Valery Kartel <valery.kartel@gmail.com> | 2018-02-15 23:58:30 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-02-18 23:16:11 +0100 |
commit | fe5066c55875bf3c0436139ed70a40c784889bae (patch) | |
tree | 46dfdcea4475923ab11b58d282ee359afbdf3171 /main | |
parent | 60c535bd0d0a391be36bdff5aa45f59d0d52b454 (diff) | |
download | aports-fe5066c55875bf3c0436139ed70a40c784889bae.tar.bz2 aports-fe5066c55875bf3c0436139ed70a40c784889bae.tar.xz |
main/wayland-protocols: upgrade to 1.13
Also add check() while being here.
Diffstat (limited to 'main')
-rw-r--r-- | main/wayland-protocols/APKBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/main/wayland-protocols/APKBUILD b/main/wayland-protocols/APKBUILD index 52682a1e5c..938ee66f8c 100644 --- a/main/wayland-protocols/APKBUILD +++ b/main/wayland-protocols/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Maintainer: Valery Kartel <valery.kartel@gmail.com> pkgname=wayland-protocols -pkgver=1.12 +pkgver=1.13 pkgrel=0 pkgdesc="Protocols and protocol extensions complementing the Wayland core protocol" url="http://wayland.freedesktop.org" @@ -11,7 +11,6 @@ depends= provides="$pkgname-dev" makedepends="wayland-dev" subpackages= -options="!check" source="https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" @@ -27,9 +26,12 @@ build() { make } +check() { + make -C "$builddir" check +} + package() { - make DESTDIR="$pkgdir" \ - -C "$builddir" install + make -C "$builddir" DESTDIR="$pkgdir" install } -sha512sums="84f913aeaf9786c5ddff4952fa4c318435569ccdc00c625f088b1dc9d6e61f3c439b2d217db9fcf2f0c37da954e266314749e2c3130bf3328cffdc3bdce5695a wayland-protocols-1.12.tar.xz" +sha512sums="f35c21da289038651b75af064ec7c10779158829f578e7320faf401e980da3c958d85e5bcad00994c574cac6319a3ab975aa5483a9b438f781b767bd6303e194 wayland-protocols-1.13.tar.xz" |