mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
39 lines
1,006 B
Bash
39 lines
1,006 B
Bash
# $Id$
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - drop valgrind makedepend
|
|
|
|
pkgname=libevdev
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc="Wrapper library for evdev devices"
|
|
arch=(i686 x86_64)
|
|
url="http://www.freedesktop.org/wiki/Software/libevdev/"
|
|
license=(custom:X11)
|
|
depends=('glibc')
|
|
makedepends=('python2' 'check' 'doxygen')
|
|
#checkdepends=('kmod')
|
|
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
|
|
sha256sums=('4b7c76195f0087023142f26c5fd2c254b35c861880c6902d3dd9b27daeec2643'
|
|
'SKIP')
|
|
|
|
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"
|
|
}
|