24 lines
546 B
Plaintext
24 lines
546 B
Plaintext
# Description: X cursor management library
|
|
# URL: https://cgit.freedesktop.org/xorg/lib/libXcursor/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-libxcursor xorg-libxfixes-32 xorg-libxrender-32
|
|
|
|
name=xorg-libxcursor-32
|
|
version=1.2.3
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/libXcursor-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libXcursor-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,share/man}
|
|
rmdir $PKG/usr/share
|
|
}
|