mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
19 lines
410 B
Plaintext
19 lines
410 B
Plaintext
# description : Xlib-based library for the X Present Extension
|
|
# depends : libx11 libxext libxfixes libxrandr
|
|
|
|
_name=libXpresent
|
|
name=libxpresent
|
|
version=1.0.1
|
|
release=1
|
|
source="$name-$version.tar.xz::https://www.x.org/archive/individual/lib/$_name-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $_name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir /usr/lib \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|