2014-05-13 17:38:44 +02:00
|
|
|
# Description: Wrapper library for evdev devices
|
|
|
|
# URL: http://xorg.freedesktop.org
|
|
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
2021-01-14 12:28:33 +01:00
|
|
|
# Depends on: meson ninja
|
2014-05-13 17:38:44 +02:00
|
|
|
|
|
|
|
name=xorg-libevdev
|
2024-09-06 12:16:35 +02:00
|
|
|
version=1.13.3
|
2020-03-29 16:02:33 +02:00
|
|
|
release=1
|
2019-10-06 11:39:44 +02:00
|
|
|
source=(https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz)
|
2014-05-13 17:38:44 +02:00
|
|
|
|
|
|
|
build() {
|
2021-01-14 12:28:33 +01:00
|
|
|
meson setup build libevdev-$version \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
2021-11-09 13:09:24 +01:00
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
2021-01-14 12:28:33 +01:00
|
|
|
-D tests=disabled \
|
|
|
|
-D documentation=disabled
|
2014-05-13 17:38:44 +02:00
|
|
|
|
2021-01-14 12:28:33 +01:00
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2014-05-13 17:38:44 +02:00
|
|
|
}
|