20 lines
504 B
Plaintext
20 lines
504 B
Plaintext
# Description: A library for layout and rendering of text
|
|
# URL: http://www.gtk.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: cairo, glib, xorg-libsm, xorg-libxext, xorg-libxft
|
|
|
|
name=pango
|
|
version=1.16.2
|
|
release=1
|
|
source=(ftp://ftp.gtk.org/pub/$name/1.16/$name-$version.tar.bz2 \
|
|
pango.modules)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
install -D -m 644 $SRC/pango.modules $PKG/usr/etc/pango/pango.modules
|
|
rm -r $PKG/usr/share
|
|
}
|