meta-wayland/recipes-extended/font-awesome/font-awesome-otf_git.bb

29 lines
576 B
BlitzBasic
Raw Normal View History

2021-06-02 17:36:25 +02:00
SUMMARY = "Font Awesome"
HOMEPAGE = "https://fontawesome.com/"
SECTION = "base/fonts"
2022-04-26 15:29:19 +02:00
LICENSE = "CC-BY-4.0 & OFL-1.1"
2023-04-10 09:00:03 +02:00
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4186e0f8172f263065437f80932efbe1"
2021-06-02 17:36:25 +02:00
SRC_URI = " \
2022-02-21 09:05:10 +01:00
git://github.com/FortAwesome/Font-Awesome.git;protocol=https;branch=6.x \
2021-06-02 17:36:25 +02:00
"
S = "${WORKDIR}/git"
2023-04-10 09:00:03 +02:00
PV = "6.4.0"
SRCREV = "0698449d50f2b95517562295a59d414afc68b369"
2021-06-02 17:36:25 +02:00
do_install () {
install -d ${D}${datadir}/fonts/opentype
for font in ${S}/otfs/*.otf; do
install -m 0644 "$font" ${D}${datadir}/fonts/opentype
done
}
2021-08-07 06:23:26 +02:00
FILES:${PN} = " \
2021-06-02 17:36:25 +02:00
${datadir}/fonts \
"