Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | DESCRIPTION ?= "TrueType font package ${PN}" |
2 | SECTION = "fonts" | ||||
3 | |||||
4 | # we don't need a compiler nor a c library for these fonts | ||||
5 | INHIBIT_DEFAULT_DEPS = "1" | ||||
6 | |||||
7 | do_install() { | ||||
8 | install -d ${D}${datadir}/fonts/truetype/ | ||||
9 | find ./ -name '*.tt[cf]' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \; | ||||
10 | } | ||||
11 | |||||
12 | inherit allarch fontcache |