blob: 40eedb3d51611f9778eacbf0611fda0e9b350a20 (
plain)
1 # Description: A library for layout and rendering of text
2 # URL: https://www.gtk.org/
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: fribidi-32 harfbuzz-32 pango xorg-libsm-32 xorg-libxft-32
5
6 name=pango-32
7 version=1.50.12
8 release=1
9 source=(https://download.gnome.org/sources/pango/${version:0:4}/${name%-*}-$version.tar.xz)
10
11 build() {
12 meson build ${name%-*}-$version \
13 --prefix=/usr \
14 --libdir=/usr/lib32 \
15 --buildtype=plain \
16 -D introspection=disabled
17
18 ninja -C build -j ${JOBS:-1}
19 DESTDIR=$PKG meson install -C build
20
21 rm -r $PKG/usr/{bin,include}
22
23 # help2man no option in meson options to disable
24 rm -rf $PKG/usr/share
25 }
|