blob: d022e4fc374136216fe71c9cfa0313c0240dede5 (
plain)
1 # Description: A library for layout and rendering of text
2 # URL: http://www.gtk.org/
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: cairo-32 glib-32 xorg-libsm-32 xorg-libxext-32 xorg-libxft-32 pango harfbuzz-32
5
6 name=pango-32
7 version=1.36.1
8 release=1
9 source=(http://download.gnome.org/sources/pango/${version%.*}/pango-$version.tar.xz
10 pango.modules-32 pango.modules-32.patch)
11
12 build() {
13 cd pango-$version
14
15 patch -p1 -i $SRC/pango.modules-32.patch
16
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/man \
20 --libdir=/usr/lib32 \
21 --program-suffix=-32
22
23 make
24 make DESTDIR=$PKG install
25
26 install -D -m 644 $SRC/pango.modules-32 \
27 $PKG/usr/etc/pango/pango.modules-32
28
29 rm -r $PKG/usr/{include,man,share}
30 }
|