mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
21 lines
405 B
Plaintext
Executable File
21 lines
405 B
Plaintext
Executable File
# description : X11 Font Services Library
|
|
# depends : xorgproto xtrans
|
|
|
|
name=libfs
|
|
version=1.0.9
|
|
release=1
|
|
source="$name-$version.tar.xz::http://ftp.x.org/pub/individual/lib/libFS-$version.tar.xz"
|
|
|
|
build() {
|
|
cd libFS-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|