CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-libxkbfile: fixed LIBS and CFLAGS
[attic/ports/xorg-cross.git] / xorg-libxkbfile / Pkgfile
CommitLineData
115cc432
JB
1# Description: xorg lib libxkbfile
2# URL: http://xorg.freedesktop.org
3# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dyndns dot org
5# Depends on: xorg-libx11 xorg-kbproto
6
7name=xorg-libxkbfile
8version=1.0.6
454a9049 9release=2
115cc432
JB
10source=(http://xorg.freedesktop.org/releases/individual/lib/libxkbfile-$version.tar.bz2)
11
12build() {
13 cd libxkbfile-$version
14
454a9049 15 export X11_LIBS="-L$CLFS/usr/lib -lX11"
115cc432
JB
16 export X11_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
17 export XKBFILE_LIBS="$X11_LIBS"
18 export XKBFILE_CFLAGS="$X11_CFLAGS"
19
20 ./configure --build=$CHOST \
21 --host=$CTARGET \
22 --prefix=/usr
23
24 make
25 make DESTDIR=$PKG install
26}