CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xorg-mkfontscale: initial import (verified compilation)
[attic/ports/xorg-cross.git] / xorg-libpixman / Pkgfile
CommitLineData
a02e90e9
JB
1# Description: Pixel manipulation library
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:
6
7name=xorg-libpixman
8version=0.16.2
9release=1
10source=(http://xorg.freedesktop.org/releases/individual/lib/pixman-$version.tar.bz2)
11
12build() {
13 cd pixman-$version
14
15 # don't build test programs
16 sed -i -e 's/^SUBDIRS = pixman test/SUBDIRS = pixman/' Makefile.in
17
18 ./configure --build=$CHOST \
19 --host=$CTARGET \
20 --prefix=/usr \
21 --mandir=/usr/man
22
23 make
24 make DESTDIR=$PKG install
25}