blob: 369e49f942cdb235c18a8554fdcd7e54775a0fc8 (
plain)
1 # Description: xorg lib libICE
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-libice
7 version=1.0.10
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libICE-$version.tar.bz2)
10
11 build() {
12 cd libICE-$version
13
14 ./configure --prefix=/usr --disable-docs
15
16 make
17 make DESTDIR=$PKG install
18
19 rm $PKG/usr/share/doc/libICE/ice.xml
20 find $PKG/usr/share -type d -delete
21 }
|