diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-23 15:38:36 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-23 15:38:36 +0000 |
| commit | a71b79f615518a2b06773d8e2450887251db496a (patch) | |
| tree | 161abd892fd41dec1fcdedb66c597e3851170bd4 /src/tesserae | |
| parent | added libxkbcommon definition (diff) | |
Diffstat (limited to 'src/tesserae')
| -rw-r--r-- | src/tesserae/extra/pango.nim | 25 |
1 files changed, 25 insertions, 0 deletions
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" |
