blob: b7ff767d5a283894904b3a3b5b7ba41983d2ffbd (
plain)
1 # Description: xorg lib libICE
2 # URL: https://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.1.1
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libICE-$version.tar.xz)
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 }
|