20 lines
385 B
Plaintext
20 lines
385 B
Plaintext
# Description: Wrapper library for evdev devices
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: python
|
|
|
|
name=xorg-libevdev
|
|
version=1.5.7
|
|
release=2
|
|
source=(http://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libevdev-$version
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|