xorg-libevdev: update to 1.10.1, new dependency meson

This commit is contained in:
Juergen Daubert 2021-01-14 12:28:33 +01:00
parent 57da222f5a
commit b3cbe4a37e
3 changed files with 14 additions and 15 deletions

View File

@ -9,9 +9,7 @@ drwxr-xr-x root/root usr/include/libevdev-1.0/libevdev/
-rw-r--r-- root/root usr/include/libevdev-1.0/libevdev/libevdev-uinput.h
-rw-r--r-- root/root usr/include/libevdev-1.0/libevdev/libevdev.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libevdev.a
-rwxr-xr-x root/root usr/lib/libevdev.la
lrwxrwxrwx root/root usr/lib/libevdev.so -> libevdev.so.2.3.0
lrwxrwxrwx root/root usr/lib/libevdev.so -> libevdev.so.2
lrwxrwxrwx root/root usr/lib/libevdev.so.2 -> libevdev.so.2.3.0
-rwxr-xr-x root/root usr/lib/libevdev.so.2.3.0
drwxr-xr-x root/root usr/lib/pkgconfig/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/xorg.pub
RWTSGWF5Q7TndOb4Fi+SCxty0hmBaxf0pbAVZpmIDbJRJN/PJMkbRmneQaV0YaGQSeYX6MUPnyMMQAWfs2h+MwyVH0JrcqrlvAE=
SHA256 (Pkgfile) = 03768db03e964d5c1b9e1a7170b8c384d8790b4efbe1988eb5729657864d6638
SHA256 (.footprint) = f98a853c426a46525918061750f48701fc213e947418633a604e4b0c6c1343a2
SHA256 (libevdev-1.10.0.tar.xz) = 3522c26e2c148be0ad68ce26fbced408a4185dea90bfe8079dc82b8ace962d4a
RWTSGWF5Q7TndE9I+2Q9P1rKxRGOA2qWvmGRgz7cPIxpJaMbEdSCElkcD2eqRnHYE/lloqsrtstijOvhM7BGh4mvBWdd1kIo7AE=
SHA256 (Pkgfile) = bb63302b81e1a774fefbf080768786b3979bab45816b7158810c48e2ffc189d1
SHA256 (.footprint) = 587f06eedb54a1b8ca7b345e6568c1cd3527fd7acd8eb0d0585682c396b5701a
SHA256 (libevdev-1.10.1.tar.xz) = 0330fe8357ece915db9366c1b9a6648941aea6f724b73ad6e71401127aa08932

View File

@ -1,19 +1,20 @@
# Description: Wrapper library for evdev devices
# URL: http://xorg.freedesktop.org
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: python3
# Depends on: meson ninja
name=xorg-libevdev
version=1.10.0
version=1.10.1
release=1
source=(https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz)
build() {
cd libevdev-$version
meson setup build libevdev-$version \
--prefix=/usr \
--buildtype=plain \
-D tests=disabled \
-D documentation=disabled
PYTHON=/usr/bin/python3 \
./configure --prefix=/usr
make
make DESTDIR=$PKG install
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}