blob: adbf12cc88fce3b23b085516a81a7f664a11a36d (
plain)
1 # Description: A library for layout and rendering of text
2 # URL: https://www.gtk.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: fribidi gobject-introspection harfbuzz xorg-libsm xorg-libxft
5
6 name=pango
7 version=1.50.7
8 release=1
9 source=(https://download-fallback.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
10
11 build() {
12 meson build $name-$version \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true
18 meson compile -C build -j ${JOBS:-1}
19 DESTDIR=$PKG meson install -C build
20 }
|