blob: 468599eabc67277a85813f6488a7337332ce5e21 (
plain)
1 # Description: xorg lib libICE
2 # URL: https://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-libice xorg-xorgproto-32 xorg-xtrans-32
5
6 name=xorg-libice-32
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 --libdir=/usr/lib32
15
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/{include,share}
20 }
|