diff options
Diffstat (limited to 'base/xorg-libpixman/Pkgfile')
-rw-r--r-- | base/xorg-libpixman/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/base/xorg-libpixman/Pkgfile b/base/xorg-libpixman/Pkgfile new file mode 100644 index 000000000..45517a478 --- /dev/null +++ b/base/xorg-libpixman/Pkgfile @@ -0,0 +1,21 @@ +# Description: Librairie pour la manipulation des pixels +# URL: http://xorg.freedesktop.org +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=xorg-libpixman +version=0.21.6 +release=1 +source=(http://xorg.freedesktop.org/releases/individual/lib/pixman-$version.tar.bz2) + +build() { + cd pixman-$version + + # don't build test programs + sed -i -e 's/^SUBDIRS = pixman test/SUBDIRS = pixman/' Makefile.in + + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install +} |