From a71b79f615518a2b06773d8e2450887251db496a Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Sun, 23 Nov 2025 16:38:36 +0100 Subject: added pango definition --- src/tesserae/extra/pango.nim | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/tesserae/extra/pango.nim (limited to 'src/tesserae/extra') diff --git a/src/tesserae/extra/pango.nim b/src/tesserae/extra/pango.nim new file mode 100644 index 0000000..a1a8c49 --- /dev/null +++ b/src/tesserae/extra/pango.nim @@ -0,0 +1,25 @@ +# Αδειοδοτείται υπό τους όρους της EUPL +import .. / .. / lapis + +tessera "pango": + source: "https://download.gnome.org/sources/pango/1.56/pango-1.56.4.tar.xz"" + patches: @[""] + dependencies: @[ + "fontconfig", + "fribidi", + "glib", + ] + build: @[ + "mkdir build", + "cd build", + """ + meson setup --prefix=/usr \ + --buildtype=release \ + --wrap-mode=nofallback \ + -D introspection=enabled \ + .. + """, + "ninja", + "ninja install" + ] + result: "libpango-1.0.so" -- cgit v1.2.3