2014-09-19 18:57:46 +00:00
|
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop valgrind makedepend
|
|
|
|
|
|
|
|
pkgname=libevdev
|
2020-07-16 13:45:41 +00:00
|
|
|
pkgver=1.9.1
|
2020-03-06 13:09:15 +00:00
|
|
|
pkgrel=1
|
2014-09-19 18:57:46 +00:00
|
|
|
pkgdesc="Wrapper library for evdev devices"
|
2018-01-31 06:35:47 +00:00
|
|
|
arch=(x86_64)
|
2019-06-10 12:35:55 +00:00
|
|
|
url="https://www.freedesktop.org/wiki/Software/libevdev/"
|
2014-09-19 18:57:46 +00:00
|
|
|
license=(custom:X11)
|
|
|
|
depends=('glibc')
|
2019-12-23 14:10:17 +00:00
|
|
|
makedepends=('python' 'check' 'doxygen')
|
2014-09-19 18:57:46 +00:00
|
|
|
#checkdepends=('kmod')
|
2017-01-06 01:13:21 +00:00
|
|
|
source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
|
2020-07-16 13:45:41 +00:00
|
|
|
sha512sums=('7d845ce2279d2e2ef12437f6218550265ea0c85e5b6c0d116aff09787b73626b338fe3084baff060085d393688b5ae3d33772689e0581684eff257af01c4c645'
|
2014-09-19 18:57:46 +00:00
|
|
|
'SKIP')
|
2015-03-07 13:42:15 +00:00
|
|
|
validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office@who-t.net>
|
2014-09-19 18:57:46 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static
|
|
|
|
make
|
|
|
|
}
|
|
|
|
check() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
# test suite requires root access and needs to load uinput module
|
|
|
|
# that's not possible in our chroot
|
|
|
|
#modprobe uinput
|
|
|
|
make check || /bin/true
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
|
|
}
|