mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 01:44:52 +00:00
23 lines
525 B
Plaintext
Executable File
23 lines
525 B
Plaintext
Executable File
# description : Common functions for Xorg input drivers
|
|
# homepage : https://www.freedesktop.org/wiki/Software/libevdev/
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : python3
|
|
|
|
name=libevdev
|
|
version=1.7.0
|
|
release=1
|
|
source=(https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz)
|
|
md5sum=(fabe87d8d7d7f7cdb4a26e5dc99fc517)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|