summaryrefslogtreecommitdiff
path: root/libs/fcft/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fcft/MAKEPKG')
-rw-r--r--libs/fcft/MAKEPKG35
1 files changed, 35 insertions, 0 deletions
diff --git a/libs/fcft/MAKEPKG b/libs/fcft/MAKEPKG
new file mode 100644
index 0000000..1f1fc9b
--- /dev/null
+++ b/libs/fcft/MAKEPKG
@@ -0,0 +1,35 @@
+#!/bin/mkpkg
+# description: Font loading and glyph rasterization library
+# url: https://codeberg.org/dnkl/fcft
+
+name=fcft
+version=3.3.3
+release=1
+depends=(fontconfig pixman tllist utf8proc)
+makedeps=(meson scdoc)
+source=(https://codeberg.org/dnkl/$name/archive/$version.tar.gz)
+renames=($name-$version.tar.gz)
+
+sha256sums=(
+ "b0c0f4a599f43723736c8565b8b84337c4195077f07f1bb8bb3252bb13a2306a"
+)
+
+build() {
+ meson setup $name build \
+ --prefix=/usr \
+ --buildtype=plain \
+ -D grapheme-shaping=enabled \
+ -D run-shaping=enabled
+
+ meson compile -C build
+ DESTDIR=$PKG meson install -C build
+
+ rm -rf $PKG/usr/share/doc
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh