blob: e5ed242adc467df7afc59dbff2e31ff5e524e6e9 (
plain)
1 # Description: A library for layout and rendering of text
2 # URL: http://www.gtk.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: xorg-libsm xorg-libxft
5
6 name=pango-compat
7 version=1.34.1
8 release=1
9 source=(https://ftp.gnome.org/pub/gnome/sources/pango/1.34/pango-$version.tar.xz)
10
11 build() {
12 cd pango-$version
13
14 ./configure \
15 --prefix=/usr \
16 --includedir='/usr/include/pango-compat' \
17 --libdir='/usr/lib/pango-compat' \
18 --disable-introspection
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/share/{gtk-doc,man}
24 rm $PKG/usr/bin/pango-view
25 }
|