2006-02-23 17:10:28 +00:00
|
|
|
# Description: A library for layout and rendering of text
|
2021-03-12 18:39:23 +01:00
|
|
|
# URL: https://www.gtk.org/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2021-06-30 06:31:14 +00:00
|
|
|
# Depends on: fribidi gobject-introspection harfbuzz xorg-libsm xorg-libxft
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
name=pango
|
2022-02-12 15:59:39 +01:00
|
|
|
version=1.50.4
|
2017-11-17 20:37:20 +01:00
|
|
|
release=1
|
2019-08-01 20:26:48 +02:00
|
|
|
source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
2006-02-23 17:10:28 +00:00
|
|
|
|
2021-07-05 12:51:12 +02:00
|
|
|
build() {
|
|
|
|
meson build $name-$version \
|
|
|
|
--prefix=/usr \
|
2021-09-11 17:25:19 +02:00
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
2021-07-05 12:51:12 +02:00
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2006-02-23 17:10:28 +00:00
|
|
|
}
|