mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
22 lines
433 B
Plaintext
Executable File
22 lines
433 B
Plaintext
Executable File
# description : X11 Testing -- Resource extension library
|
|
# depends : libx11 libxext libxi
|
|
|
|
name=libxtst
|
|
version=1.2.4
|
|
release=1
|
|
source="$name-$version.tar.xz::http://ftp.x.org/pub/individual/lib/libXtst-$version.tar.xz"
|
|
|
|
build() {
|
|
cd libXtst-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
}
|