mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
20 lines
388 B
Plaintext
Executable File
20 lines
388 B
Plaintext
Executable File
# description : Small commandline tool to configure devices
|
|
# depends : libx11 libxext libxi libxrandr libxinerama
|
|
|
|
name=xinput
|
|
version=1.6.4
|
|
release=1
|
|
source="http://ftp.x.org/pub/individual/app/xinput-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|