diff options
author | David-John Willis <John.Willis@Distant-earth.com> | 2009-11-01 11:31:48 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-12-04 10:43:04 +0100 |
commit | d528b9fca92b803faff9f3e025cd0dc81fd74fea (patch) | |
tree | ab9837e6fedfa3e9774cce5a37e02bc9a807f8c6 /recipes/ttf-fonts | |
parent | cf32e418870648aa8d5a624397fa2fadf21c6bc5 (diff) |
ttf-freefonts: Add GNU FreeFont (Free UCS Outline Fonts) package.
Diffstat (limited to 'recipes/ttf-fonts')
-rw-r--r-- | recipes/ttf-fonts/ttf-freefonts_20090104.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes/ttf-fonts/ttf-freefonts_20090104.bb b/recipes/ttf-fonts/ttf-freefonts_20090104.bb new file mode 100644 index 0000000000..316873dc75 --- /dev/null +++ b/recipes/ttf-fonts/ttf-freefonts_20090104.bb @@ -0,0 +1,24 @@ +require ttf.inc + +DESCRIPTION="TrueType Unicode fonts from the Free UCS Outline Fonts Project" +HOMEPAGE="http://savannah.nongnu.org/projects/freefont/" + +PR = "r1" + +SRC_URI = "http://ftp.gnu.org/gnu/freefont/freefont-ttf-${PV}.tar.gz" + +S = "${WORKDIR}/freefont-${PV}" + +FILES_${PN}-doc = "${datadir}/doc/ttf-freefont/README \ + ${datadir}/doc/ttf-freefont/AUTHORS \ +" + +FILES_${PN} = "${datadir}" + + +do_install_append() { + install -d ${D}${datadir}/doc/ + install -d ${D}${datadir}/doc/ttf-freefont + install -m 0644 ${S}/README ${D}${datadir}/doc/ttf-freefont + install -m 0644 ${S}/AUTHORS ${D}${datadir}/doc/ttf-freefont +} |