mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
36 lines
1.1 KiB
BlitzBasic
36 lines
1.1 KiB
BlitzBasic
require ttf.inc
|
|
|
|
SUMMARY = "Gentium fonts - TTF Version"
|
|
HOMEPAGE = "http://scripts.sil.org/gentium"
|
|
LICENSE = "OFL-1.0"
|
|
LICENSE_URL = "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=OFL"
|
|
LIC_FILES_CHKSUM = "file://OFL;md5=33a5bf7b98a9c0ae87430760ba762295 \
|
|
"
|
|
|
|
SRC_URI = "https://archive.debian.org/debian/pool/main/t/ttf-gentium/ttf-gentium_${PV}.orig.tar.gz "
|
|
|
|
S = "${UNPACKDIR}/ttf-sil-gentium-${PV}"
|
|
|
|
do_install:append() {
|
|
|
|
install -d ${D}${datadir}/doc/ttf-gentium/
|
|
install -d ${D}${datadir}/doc/ttf-gentium-alt/
|
|
|
|
install -m 0644 ${S}/OFL ${D}${datadir}/doc/ttf-gentium/
|
|
install -m 0644 ${S}/OFL ${D}${datadir}/doc/ttf-gentium-alt/
|
|
|
|
}
|
|
|
|
PACKAGES = "${PN} ${PN}-alt"
|
|
FONT_PACKAGES = "${PN} ${PN}-alt"
|
|
|
|
FILES:${PN}-alt = "${datadir}/fonts/truetype/GenAI*.ttf \
|
|
${datadir}/fonts/truetype/GenAR*.ttf \
|
|
${datadir}/doc/ttf-gentium-alt/*"
|
|
|
|
FILES:${PN} = "${datadir}/fonts/truetype/GenI*.ttf \
|
|
${datadir}/fonts/truetype/GenR*.ttf \
|
|
${datadir}/doc/ttf-gentium/*"
|
|
|
|
SRC_URI[sha256sum] = "4746c04c9a4ad9e0788a38e0a2f81919a630d8070ceabc89f156b6d41d8ceb37"
|