opt/pango-compat/Pkgfile

26 lines
592 B
Plaintext
Raw Normal View History

# Description: A library for layout and rendering of text (required for pangox-compat)
# URL: https://www.gtk.org/
2023-09-24 09:31:25 +02:00
# 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() {
2023-09-24 09:31:25 +02:00
cd pango-$version
2023-09-24 09:31:25 +02:00
./configure \
--prefix=/usr \
--includedir='/usr/include/pango-compat' \
--libdir='/usr/lib/pango-compat' \
--disable-introspection
2023-09-24 09:31:25 +02:00
make
make DESTDIR=$PKG install
2023-09-24 09:31:25 +02:00
rm -r $PKG/usr/share/{gtk-doc,man}
rm $PKG/usr/bin/pango-view
}