CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Major update for Arch-Maintainer's email (all ports)
[attic/ports/xorg-cross.git] / xorg-libxcursor / Pkgfile
CommitLineData
c0d72091
JB
1# Description: xorg lib libXcursor
2# URL: http://xorg.freedesktop.org
3# Maintainer: Tilman Sauerbeck tilman at crux dot nu
179188a5 4# Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu
c0d72091
JB
5# Depends on: xorg-libxrender xorg-libxfixes xorg-libx11 xorg-fixesproto
6
7name=xorg-libxcursor
8version=1.1.10
9release=1
10source=(http://xorg.freedesktop.org/releases/individual/lib/libXcursor-$version.tar.bz2)
11
12build() {
13 cd libXcursor-$version
14
15 export XCURSOR_LIBS="-L$CLFS/usr/lib -lXrender -lXfixes -lX11"
16 export XCURSOR_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
17
18 ./configure --build=$CHOST \
19 --host=$CTARGET \
20 --prefix=/usr \
21 --mandir=/usr/man
22
23 make
24 make DESTDIR=$PKG install
25}