added evdev
This commit is contained in:
parent
550c78e460
commit
14a4ca1937
1 changed files with 31 additions and 0 deletions
31
pkgs/libevdev/build.sh
Normal file
31
pkgs/libevdev/build.sh
Normal 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
|
||||
}
|
Loading…
Reference in a new issue