blob: 3393fad7e9c82a04e50205b7290c5f2e0b7e3f80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.19.2
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
}
|