blob: a39441dd2b9cb03380cc5dd9f00b2e990ed12eca (
plain)
1 # Description: Pixel manipulation library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-libpixman
5
6 name=xorg-libpixman-32
7 version=0.42.2
8 release=1
9 source=(https://www.x.org/releases/individual/lib/pixman-$version.tar.xz)
10
11 build() {
12 cd pixman-$version
13
14 # don't build test programs
15 sed -i -e 's|^SUBDIRS *=.*|SUBDIRS = pixman|' Makefile.in
16
17 ./configure --prefix=/usr --mandir=/usr/man --libdir=/usr/lib32
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -r $PKG/usr/include
23 }
|