mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +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>
33 lines
1.1 KiB
BlitzBasic
33 lines
1.1 KiB
BlitzBasic
require ttf.inc
|
|
|
|
SUMMARY = "Adobe Source Code Pro"
|
|
HOMEPAGE = "https://github.com/adobe-fonts/source-code-pro"
|
|
LICENSE = "OFL-1.1"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c7c16bdc2c96af797293d68503e5c65c"
|
|
|
|
inherit allarch fontcache
|
|
|
|
SRC_URI = " \
|
|
https://github.com/adobe-fonts/source-code-pro/releases/download/2.030R-ro/1.050R-it/source-code-pro-2.030R-ro-1.050R-it.zip \
|
|
file://44-source-code-pro-fonts-fontconfig.conf \
|
|
"
|
|
SRC_URI[sha256sum] = "da2ac159497d31b0c6d9daa8fc390fb8252e75b4a9805ace6a2c9cccaed4932e"
|
|
S = "${UNPACKDIR}/source-code-pro-2.030R-ro-1.050R-it"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/adobe-fonts/source-code-pro/tags"
|
|
UPSTREAM_CHECK_REGEX = "releases/tag/(?P<pver>\d+\.\d+)R"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/fonts/conf.d/
|
|
install -m 0644 ${UNPACKDIR}/44-source-code-pro-fonts-fontconfig.conf ${D}${sysconfdir}/fonts/conf.d/
|
|
|
|
install -d ${D}${datadir}/fonts/truetype/
|
|
find ./ -name '*.otf' -exec install -m 0644 {} ${D}${datadir}/fonts/truetype/ \;
|
|
}
|
|
|
|
FILES:${PN} = " \
|
|
${sysconfdir}/fonts \
|
|
${datadir}/fonts \
|
|
"
|
|
|