summaryrefslogtreecommitdiff
path: root/repo/x11/pango.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-04-17 22:07:52 +0100
committerdavidovski <david@davidovski.xyz>2022-04-17 22:07:52 +0100
commitc35d083dc525e223b085ec00e6863ea6eafb003c (patch)
tree5bbe25b4f92cd1821c8cbbefed9c19de6e42b98e /repo/x11/pango.xibuild
parent7cc715c1249422ddf91987be64a35eef43e3e62d (diff)
updated musl
Diffstat (limited to 'repo/x11/pango.xibuild')
-rw-r--r--repo/x11/pango.xibuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/repo/x11/pango.xibuild b/repo/x11/pango.xibuild
new file mode 100644
index 0000000..2515487
--- /dev/null
+++ b/repo/x11/pango.xibuild
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+NAME="pango"
+DESC="library for layout and rendering of text"
+
+MAKEDEPS="meson ninja"
+DEPS="sbase cairo fontconfig freetype2 glib libx11 libxft libxrender musl"
+
+PKG_VER=1.50.5
+SOURCE="https://download.gnome.org/sources/pango/${PKG_VER%.*}/pango-$PKG_VER.tar.xz"
+ADDITIONAL="disable-broken-test.patch "
+
+prepare () {
+ apply_patches
+}
+
+build () {
+ mkdir build &&
+ cd build &&
+ meson --prefix=/usr .. &&
+ ninja
+}
+
+package () {
+ DESTDIR=$PKG_DEST ninja install
+}