added evdev

This commit is contained in:
Ella-0 2021-06-15 21:01:25 +01:00
parent 550c78e460
commit 14a4ca1937

31
pkgs/libevdev/build.sh Normal file
View file

@ -0,0 +1,31 @@
pkgname=libevdev
pkgver=1.10.1
fetch() {
curl "https://www.freedesktop.org/software/libevdev/libevdev-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
meson .. \
--buildtype=release \
--prefix=/usr \
--libexecdir=lib \
-Dtests=disabled \
-Ddocumentation=disabled
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat COPYING
}