CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
added .gitignore file
[attic/ports/xorg-cross.git] / xorg-xrandr / Pkgfile
1 # Description: Resize and rotate utility for X
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 dot dyndns dot org
5 # Depends on: xorg-libxrandr
6
7 name=xorg-xrandr
8 version=1.3.2
9 release=1
10 source=(http://xorg.freedesktop.org/releases/individual/app/xrandr-$version.tar.bz2)
11
12 build() {
13 cd xrandr-$version
14
15 export XRANDR_LIBS="-L$CLFS/usr/lib -lXrandr -lXrender -lX11"
16 export XRANDR_CFLAGS="-I$CLFS/usr/include"
17
18 ./configure --build=$CHOST \
19 --host=$CTARGET \
20 --prefix=/usr \
21 --mandir=/usr/man
22
23 make
24 make DESTDIR=$PKG install
25 }