mirror of
https://codeberg.org/flk/meta-wayland.git
synced 2024-11-19 20:08:27 +01:00
29 lines
576 B
BlitzBasic
29 lines
576 B
BlitzBasic
SUMMARY = "Font Awesome"
|
|
|
|
HOMEPAGE = "https://fontawesome.com/"
|
|
SECTION = "base/fonts"
|
|
|
|
LICENSE = "CC-BY-4.0 & OFL-1.1"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9b9d97c72a232b7715f2aed4bf4a4d45"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/FortAwesome/Font-Awesome.git;protocol=https;branch=6.x \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
PV = "6.6.0"
|
|
SRCREV = "37eff7fa00de26db41183a3ad8ed0e9119fbc44b"
|
|
|
|
|
|
do_install () {
|
|
install -d ${D}${datadir}/fonts/opentype
|
|
for font in ${S}/otfs/*.otf; do
|
|
install -m 0644 "$font" ${D}${datadir}/fonts/opentype
|
|
done
|
|
}
|
|
|
|
FILES:${PN} = " \
|
|
${datadir}/fonts \
|
|
"
|
|
|