libinput: update to 1.16.3

This commit is contained in:
Juergen Daubert 2020-11-03 15:25:13 +01:00
parent c832d032cb
commit 39f6c9b01a
2 changed files with 16 additions and 17 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/xorg.pub
RWTSGWF5Q7TndGhODuRiNFUbLjah7VbI7gODPF+p/9uQ3385jJ68Yrocw0+RiE8A4cUHKYTdwiX3Lmyo6cZLzx78pqfiML7Zpg4=
SHA256 (Pkgfile) = 088412fca1e0f0e54fa47cb09c645a15776fc46a46431ff6302453ac3bc2cc75
RWTSGWF5Q7TndCGheWt++feU4r13Rylg3kbX5hQar4oI7EUb2PA9lg+tPuTEEYhxkThaXooQ9v2TyoLe7X2DQaD3BDhYnpixVQ8=
SHA256 (Pkgfile) = 32b592e1911e6d011a17c24aa6643c70192bab035395a1b475daed4a15412a02
SHA256 (.footprint) = 64c7443001183c279db12baadebd214246f861c3f186ded6f2cc8f4a5dc8e94d
SHA256 (libinput-1.16.2.tar.xz) = fc3d8c50fe7abc4dc4406bc01262a3f8149864557f87279adcf300e523c160a9
SHA256 (libinput-1.16.3.tar.xz) = dc5e1ae51ec1cc635ca96f61118b0f07dfea783cab0747a60f3555068bb077e4

View File

@ -4,23 +4,22 @@
# Depends on: eudev meson mtdev ninja xorg-libevdev
name=libinput
version=1.16.2
version=1.16.3
release=1
source=(https://www.freedesktop.org/software/$name/$name-$version.tar.xz)
build() {
cd $name-$version
meson setup build $name-$version \
--prefix=/usr \
--libexecdir=/usr/lib \
--buildtype=plain \
-D debug-gui=false \
-D documentation=false \
-D tests=false \
-D libwacom=false \
-D udev-dir=/lib/udev \
-D zshcompletiondir=no
meson build \
--prefix /usr \
--libexecdir /usr/lib \
--buildtype release \
-Ddebug-gui=false \
-Ddocumentation=false \
-Dtests=false \
-Dlibwacom=false \
-Dudev-dir=/lib/udev \
-Dzshcompletiondir=no
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}