forked from ports/compat-32
31 lines
742 B
Plaintext
31 lines
742 B
Plaintext
# Description: A library for layout and rendering of text
|
|
# URL: http://www.gtk.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: cairo-32 glib-32 xorg-libsm-32 xorg-libxext-32 xorg-libxft-32 pango harfbuzz-32
|
|
|
|
name=pango-32
|
|
version=1.32.4
|
|
release=1
|
|
source=(http://download.gnome.org/sources/pango/${version%.*}/pango-$version.tar.xz
|
|
pango.modules-32 pango.modules-32.patch)
|
|
|
|
build() {
|
|
cd pango-$version
|
|
|
|
patch -p1 -i $SRC/pango.modules-32.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libdir=/usr/lib32 \
|
|
--program-suffix=-32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -D -m 644 $SRC/pango.modules-32 \
|
|
$PKG/usr/etc/pango/pango.modules-32
|
|
|
|
rm -r $PKG/usr/{include,man,share}
|
|
}
|