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>
27 lines
793 B
BlitzBasic
27 lines
793 B
BlitzBasic
require ttf.inc
|
|
|
|
SUMMARY = "Liberation fonts - TTF Version"
|
|
HOMEPAGE = "https://github.com/liberationfonts"
|
|
LICENSE = "OFL-1.1"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=f96db970a9a46c5369142b99f530366b \
|
|
"
|
|
|
|
|
|
SRCREV = "4b0192046158094654e865245832c66d2104219e"
|
|
SRC_URI = "git://github.com/liberationfonts/liberation-fonts.git;branch=main;protocol=https"
|
|
|
|
DEPENDS = "fontforge-native"
|
|
|
|
PACKAGES = "ttf-liberation-mono ttf-liberation-sans ttf-liberation-serif"
|
|
FONT_PACKAGES = "ttf-liberation-mono ttf-liberation-sans ttf-liberation-serif"
|
|
|
|
FILES:ttf-liberation-mono = "${datadir}/fonts/truetype/*Mono*"
|
|
FILES:ttf-liberation-sans = "${datadir}/fonts/truetype/*Sans*"
|
|
FILES:ttf-liberation-serif = "${datadir}/fonts/truetype/*Serif*"
|
|
|
|
inherit python3native
|
|
|
|
do_compile() {
|
|
cd ${S}; make ttf;
|
|
}
|