Alexander Kanavin fc78d37ff0
meta-openembedded/all: adapt to UNPACKDIR changes
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>
2025-06-25 06:44:52 -07:00

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;
}