diff options
Diffstat (limited to 'recipes-graphics/ttf-fonts')
-rw-r--r-- | recipes-graphics/ttf-fonts/ttf-dejavu_%.bbappend | 13 | ||||
-rw-r--r-- | recipes-graphics/ttf-fonts/ttf-dejavu_agldemo.inc | 12 |
2 files changed, 13 insertions, 12 deletions
diff --git a/recipes-graphics/ttf-fonts/ttf-dejavu_%.bbappend b/recipes-graphics/ttf-fonts/ttf-dejavu_%.bbappend index 159865860..86a5d90ca 100644 --- a/recipes-graphics/ttf-fonts/ttf-dejavu_%.bbappend +++ b/recipes-graphics/ttf-fonts/ttf-dejavu_%.bbappend @@ -1,12 +1 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/files:" -DEPENDS += "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 ${WORKDIR}/cleaner.py ${TTF} - done -} +require ${@bb.utils.contains('AGL_FEATURES', 'agldemo', 'ttf-dejavu_agldemo.inc', '', d)} diff --git a/recipes-graphics/ttf-fonts/ttf-dejavu_agldemo.inc b/recipes-graphics/ttf-fonts/ttf-dejavu_agldemo.inc new file mode 100644 index 000000000..bb47bdc73 --- /dev/null +++ b/recipes-graphics/ttf-fonts/ttf-dejavu_agldemo.inc @@ -0,0 +1,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 ${WORKDIR}/cleaner.py ${TTF} + done +} |