diff options
author | Li xin <lixin.fnst@cn.fujitsu.com> | 2014-11-27 15:58:07 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-09 11:17:39 +0100 |
commit | 299b1beda31cbae9802052a967d66d57c100eb02 (patch) | |
tree | efd7c9ee4fad05073076f088d79cfb18c69b228e /meta-oe/recipes-graphics/takao-fonts | |
parent | 2cc1bd9dd060f5002c2fde7aacba86fe230c12af (diff) | |
download | meta-openembedded-299b1beda31cbae9802052a967d66d57c100eb02.tar.gz |
takao-fonts: add new recipe
Takao Fonts are a community developed derivatives of IPA Fonts.
IPA Fonts are high quality Japanese outline fonts developed by
Information-technology Promotion Agency,Japan(called IPA for short).
Homepage: https://launchpad.net/takao-fonts
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics/takao-fonts')
-rw-r--r-- | meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb b/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb new file mode 100644 index 000000000..0a0f6d16c --- /dev/null +++ b/meta-oe/recipes-graphics/takao-fonts/takao-fonts_003.02.01.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | SUMMARY = "Takao Fonts are a community developed derivatives of IPA Fonts." | ||
2 | DESCRIPTION = "Takao Fonts are a community developed derivatives of IPA Fonts." | ||
3 | |||
4 | HOMEPAGE = "https://launchpad.net/takao-fonts" | ||
5 | SECTION = "User Interface/X" | ||
6 | |||
7 | LICENSE = "IPA" | ||
8 | LIC_FILES_CHKSUM = "file://IPA_Font_License_Agreement_v1.0.txt;md5=6cd3351ba979cf9db1fad644e8221276" | ||
9 | |||
10 | SRC_URI = "http://launchpad.net/takao-fonts/003.02/${PV}/+download/takao-fonts-ttf-${PV}.zip" | ||
11 | SRC_URI[md5sum] = "ca480e5edb9f26d871bf6df6cb910306" | ||
12 | SRC_URI[sha256sum] = "2f526a16c7931958f560697d494d8304949b3ce0aef246fb0c727fbbcc39089e" | ||
13 | |||
14 | S = "${WORKDIR}/${PN}-ttf-${PV}" | ||
15 | |||
16 | do_install() { | ||
17 | install -m 0755 -d ${D}/${datadir}/fonts | ||
18 | install -m 0644 -p ${S}/*.ttf ${D}/${datadir}/fonts/ | ||
19 | } | ||
20 | |||
21 | FILES_${PN} += "${datadir}/fonts/*.ttf" | ||