25 lines
577 B
Plaintext
25 lines
577 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.38.0
|
|
release=1
|
|
source=(http://download.gnome.org/sources/pango/${version:0:4}/pango-$version.tar.xz)
|
|
|
|
build() {
|
|
cd pango-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libdir=/usr/lib32 \
|
|
--program-suffix=-32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,man,share}
|
|
}
|