CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-xmodmap: initial import (verified compilation)
[attic/ports/xorg-cross.git] / xorg-xinit / Pkgfile
CommitLineData
5019ddb2
JB
1# Description: X Window System initializer
2# URL: http://xorg.freedesktop.org
3# Maintainer: Tilman Sauerbeck tilman at crux dot nu
a8208cd2
JB
4# Arch Maintainer: System Team crux-arm at mikeux dot dyndns dot org
5# Depends on: xorg-libx11
5019ddb2
JB
6
7name=xorg-xinit
8version=1.2.0
a8208cd2 9release=2
5019ddb2
JB
10source=(http://xorg.freedesktop.org/releases/individual/app/xinit-$version.tar.bz2)
11
12build() {
13 cd xinit-$version
14
a8208cd2
JB
15 export XINIT_LIBS="-L$CLFS/usr/lib -lX11"
16 export XINIT_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
5019ddb2
JB
17
18 ./configure --build=$CHOST \
19 --host=$CTARGET \
a8208cd2
JB
20 --prefix=/usr \
21 --mandir=/usr/man
5019ddb2
JB
22
23 make
24 make DESTDIR=$PKG install
25}