compat-32/pango-32/Pkgfile

26 lines
673 B
Plaintext
Raw Normal View History

# Description: A library for layout and rendering of text
# URL: https://www.gtk.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: fribidi-32 harfbuzz-32 pango xorg-libsm-32 xorg-libxft-32
name=pango-32
2021-03-13 01:16:04 +01:00
version=1.48.3
release=1
2017-04-12 10:26:34 +02:00
source=(https://download.gnome.org/sources/pango/${version:0:4}/${name%-*}-$version.tar.xz)
build() {
2021-01-02 15:21:37 +01:00
meson build ${name%-*}-$version \
--prefix=/usr \
--libdir=/usr/lib32 \
--buildtype=plain \
-D introspection=disabled
2019-08-04 09:23:23 +02:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2019-08-04 09:23:23 +02:00
rm -r $PKG/usr/{bin,include}
# help2man no option in meson options to disable
rm -rf $PKG/usr/share/man
}