mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
19 lines
343 B
Plaintext
Executable File
19 lines
343 B
Plaintext
Executable File
# description : Common functions for Xorg input drivers
|
|
|
|
name=libevdev
|
|
version=1.13.1
|
|
release=1
|
|
source="https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|