CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-libx11: Added xorg-xf86bigfontproto dependencie.
[attic/ports/xorg-cross.git] / xorg-libxres / Pkgfile
CommitLineData
411cd12c
JB
1# Description: X Resource extension client library
2# URL: http://xorg.freedesktop.org
3# Maintainer: Tilman Sauerbeck tilman at crux dot nu
bab2a29c 4# Arch Maintainer System Team devel at crux-arm dot nu
411cd12c
JB
5# Depends on: xorg-libx11 xorg-libxext xorg-resourceproto
6
7name=xorg-libxres
8version=1.0.4
ffa4be91 9release=2
411cd12c
JB
10source=(http://xorg.freedesktop.org/releases/individual/lib/libXres-$version.tar.bz2)
11
12build() {
13 cd libXres-$version
14
ffa4be91 15 export X11_LIBS="-L$CLFS/usr/lib -lX11 -lXext"
411cd12c
JB
16 export X11_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
17 export XRES_LIBS="$X11_LIBS"
18 export XRES_CFLAGS="$X11_CFLAGS"
19
20 ./configure --build=$CHOST \
21 --host=$CTARGET \
22 --prefix=/usr \
23 --mandir=/usr/man \
24 --enable-malloc0returnsnull
25
26 make
27 make DESTDIR=$PKG install
28}