22 lines
466 B
Plaintext
22 lines
466 B
Plaintext
# Description: xorg lib libICE
|
|
# URL: https://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-xorgproto xorg-xtrans
|
|
|
|
name=xorg-libice
|
|
version=1.1.1
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/libICE-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libICE-$version
|
|
|
|
./configure --prefix=/usr --disable-docs
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/share/doc/libICE/ice.xml
|
|
find $PKG/usr/share -type d -delete
|
|
}
|