aboutsummaryrefslogtreecommitdiffstats
path: root/main/libinput
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2017-10-23 10:29:33 +0200
committerCarlo Landmeter <clandmeter@gmail.com>2017-10-23 10:32:23 +0200
commite399bf8edf4d00e4ee75073b6b935c901115409b (patch)
tree7b7d71b0d93bb605a09cd655db2635a2626eaed3 /main/libinput
parent98aceff2793097655532aa15e54654f1c30513a2 (diff)
downloadaports-e399bf8edf4d00e4ee75073b6b935c901115409b.tar.bz2
aports-e399bf8edf4d00e4ee75073b6b935c901115409b.tar.xz
main/libinput: upgrade to 1.9.0
Diffstat (limited to 'main/libinput')
-rw-r--r--main/libinput/APKBUILD28
1 files changed, 11 insertions, 17 deletions
diff --git a/main/libinput/APKBUILD b/main/libinput/APKBUILD
index 9aefed3036..43a8817498 100644
--- a/main/libinput/APKBUILD
+++ b/main/libinput/APKBUILD
@@ -1,14 +1,14 @@
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer: Daniel Sabogal <dsabogalcc@gmail.com>
pkgname=libinput
-pkgver=1.8.3
+pkgver=1.9.0
pkgrel=0
pkgdesc="Library for handling input devices"
url="http://www.freedesktop.org/wiki/Software/libinput/"
arch="all"
license="MIT"
depends=""
-makedepends="mtdev-dev eudev-dev libevdev-dev grep"
+makedepends="mtdev-dev eudev-dev libevdev-dev meson"
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs"
options="!check"
source="http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz"
@@ -16,23 +16,17 @@ builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib \
- --mandir=/usr/share/man \
- --with-udev-dir=/lib/udev \
- --disable-documentation \
- --disable-debug-gui \
- --disable-libwacom \
- --disable-tests
- make
+ meson --prefix=/usr \
+ -Ddocumentation=false \
+ -Dlibwacom=false \
+ -Ddebug-gui=false \
+ -Dtests=false builddir/
+ ninja -C builddir/
}
package() {
- make DESTDIR="$pkgdir" -C "$builddir" install
+ cd "$builddir"
+ DESTDIR="$pkgdir" ninja -C builddir/ install
}
-sha512sums="88006d217e3507858fa6b9ac1f25c267255fb51d1bcf1208d2afd423bf2a9292944bc5526ea91f27fad3ff04c2f9f43ab3aa25fd9fb7ace1231ecd33ddf18de6 libinput-1.8.3.tar.xz"
+sha512sums="4111dd02ef7778c246da28ead284a77014f6eaa4b7f90f36ee124af809e31c70ac065216ef5648d1d2dc525355176e2aa22788bfbb19f5f6d25276fbba42e150 libinput-1.9.0.tar.xz"