26 lines
592 B
Plaintext
26 lines
592 B
Plaintext
# Description: A library for layout and rendering of text (required for pangox-compat)
|
|
# URL: https://www.gtk.org/
|
|
# Maintainer: unmaintained
|
|
# Depends on: xorg-libsm xorg-libxft
|
|
|
|
name=pango-compat
|
|
version=1.34.1
|
|
release=1
|
|
source=(https://ftp.gnome.org/pub/gnome/sources/pango/1.34/pango-$version.tar.xz)
|
|
|
|
build() {
|
|
cd pango-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--includedir='/usr/include/pango-compat' \
|
|
--libdir='/usr/lib/pango-compat' \
|
|
--disable-introspection
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{gtk-doc,man}
|
|
rm $PKG/usr/bin/pango-view
|
|
}
|