diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-09 14:03:57 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-31 06:32:05 +0000 |
commit | 377731b2f43e7e247e88edd54b2b5052b269ae0f (patch) | |
tree | 87dcf6d03fd10861eca7affc30d91bf7187b14ae | |
parent | adf4ebc73686fee7c020778c7cfeffe2fa3397dd (diff) |
main/libinput: upgrade to 1.13.2
-rw-r--r-- | main/libinput/APKBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/main/libinput/APKBUILD b/main/libinput/APKBUILD index 9e368363572..6c671a8d5e2 100644 --- a/main/libinput/APKBUILD +++ b/main/libinput/APKBUILD @@ -1,20 +1,22 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Maintainer: Daniel Sabogal <dsabogalcc@gmail.com> pkgname=libinput -pkgver=1.12.6 +pkgver=1.13.2 pkgrel=0 pkgdesc="Library for handling input devices" url="https://www.freedesktop.org/wiki/Software/libinput" arch="all" license="MIT" -makedepends="eudev-dev libevdev-dev meson mtdev-dev bash" +makedepends="eudev-dev libevdev-dev meson mtdev-dev" +checkdepends="diffutils bash" subpackages="$pkgname-dev $pkgname-doc $pkgname-libs" source="https://freedesktop.org/software/libinput/$pkgname-$pkgver.tar.xz" -builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - meson --prefix=/usr \ + meson \ + --buildtype=plain \ + --prefix=/usr \ --libdir=lib \ -Ddocumentation=false \ -Dlibwacom=false \ @@ -33,4 +35,4 @@ package() { DESTDIR="$pkgdir" ninja -C builddir/ install } -sha512sums="02ad90c77a0c8c27fd96ec34e1546c5f0947ced49bad386372c1ef7c41b3b2157c39020f0766f20aaf2ab3c97128567e169279bea21115ced39499dda325d2ef libinput-1.12.6.tar.xz" +sha512sums="26f11c5274c26acc38b9b5729195010c0799a9563f1eb0e0cd67e323f8ed73b0fc8db8584ec8fdf1b726417f64c2daeb54832167079832626c8c1190fccf459f libinput-1.13.2.tar.xz" |