blob: 5ca238dd99428bd2f80d4b59b1f6ef264cb7300b (
plain)
1 # Description: X Font Service client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-xorgproto xorg-xtrans
5
6 name=xorg-libfs
7 version=1.0.9
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libFS-$version.tar.xz)
10
11 build() {
12 cd libFS-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18
19 rm $PKG/usr/share/doc/libFS/FSlib.txt
20 find $PKG/usr/share -type d -delete
21 }
|