blob: caed32e64a7e48d9a23a820046e0bac6f9d65ae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
DEPENDS:append = " fontforge-native"
# From the orginal work located at https://aur.archlinux.org/packages/ttf-dejavu-emojiless/
SRC_URI:append = " file://cleaner.py"
do_install:prepend() {
for TTF in ${S}/*.ttf; do
fontforge -script ${UNPACKDIR}/cleaner.py ${TTF}
done
}
|