mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-20 23:44:35 +00:00
22 lines
424 B
Plaintext
Executable File
22 lines
424 B
Plaintext
Executable File
# description : X Rendering Extension client library
|
|
# depends : libx11
|
|
|
|
name=libxrender
|
|
version=0.9.11
|
|
release=1
|
|
source="$name-$version.tar.xz::http://ftp.x.org/pub/individual/lib/libXrender-$version.tar.xz"
|
|
|
|
build() {
|
|
cd libXrender-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
}
|