From 0fb3e081d76ad1e73dae5bfccf141c48f49815d4 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Tue, 23 Dec 2025 23:30:05 +0300 Subject: ukarpanghooth: add compiled fonts use fontmake and fonttools for this, because fontc generates ttf. --- ukarpanghooth/Makefile | 16 ++++++++++++++++ ukarpanghooth/output/ukarpanghooth.otf | Bin 12452 -> 8888 bytes ukarpanghooth/output/ukarpanghooth.woff2 | Bin 0 -> 5408 bytes 3 files changed, 16 insertions(+) create mode 100644 ukarpanghooth/Makefile create mode 100644 ukarpanghooth/output/ukarpanghooth.woff2 diff --git a/ukarpanghooth/Makefile b/ukarpanghooth/Makefile new file mode 100644 index 0000000..60c2193 --- /dev/null +++ b/ukarpanghooth/Makefile @@ -0,0 +1,16 @@ +SRC = ukarpanghooth.ufo +OTF = output/${SRC:.ufo=.otf} +WOFF2 = output/${SRC:.ufo=.woff2} + +all: ${OTF} ${WOFF2} + +${OTF}: ${SRC} + fontmake --output-dir output -o otf -u ${SRC} + +${WOFF2}: ${OTF} + fonttools ttLib.woff2 compress -o $@ ${OTF} + +clean: + rm -f ${OTF} ${WOFF2} + +.PHONY: clean diff --git a/ukarpanghooth/output/ukarpanghooth.otf b/ukarpanghooth/output/ukarpanghooth.otf index 4c2d16d..b3489c9 100644 Binary files a/ukarpanghooth/output/ukarpanghooth.otf and b/ukarpanghooth/output/ukarpanghooth.otf differ diff --git a/ukarpanghooth/output/ukarpanghooth.woff2 b/ukarpanghooth/output/ukarpanghooth.woff2 new file mode 100644 index 0000000..176d915 Binary files /dev/null and b/ukarpanghooth/output/ukarpanghooth.woff2 differ -- cgit v1.2.3