2021-06-06 19:01:21 +02:00
|
|
|
SUMMARY = "A simple library for font loading and glyph rasterization using FontConfig, FreeType and pixman."
|
|
|
|
HOMEPAGE = "https://codeberg.org/dnkl/fcft"
|
|
|
|
BUGTRACKER = "https://codeberg.org/dnkl/fcft/issues"
|
|
|
|
SECTION = "base/shell"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3a7351a597a91e763901f7c76f21e798"
|
|
|
|
|
|
|
|
DEPENDS = " \
|
|
|
|
fontconfig \
|
|
|
|
freetype \
|
|
|
|
harfbuzz \
|
|
|
|
pixman \
|
|
|
|
tllist \
|
|
|
|
"
|
|
|
|
|
|
|
|
SRC_URI = " \
|
2021-11-23 17:16:27 +01:00
|
|
|
git://codeberg.org/dnkl/fcft.git;protocol=https;branch=master \
|
2021-06-06 19:01:21 +02:00
|
|
|
"
|
|
|
|
|
|
|
|
S = "${WORKDIR}/git"
|
2022-02-06 17:00:38 +01:00
|
|
|
PV = "3.0.1"
|
|
|
|
SRCREV = "e964c3677e35ce44a4bd8bf6f0b85d8f9119e8a6"
|
2021-06-06 19:01:21 +02:00
|
|
|
|
|
|
|
inherit meson pkgconfig
|
|
|
|
|
2021-12-13 11:41:49 +01:00
|
|
|
PACKAGECONFIG[docs] = "-Ddocs=enabled,-Ddocs=disabled,scdoc-native"
|
2021-11-15 09:14:43 +01:00
|
|
|
PACKAGECONFIG[grapheme-shaping] = "-Dgrapheme-shaping=enabled,-Dgrapheme-shaping=disabled,utf8proc"
|
|
|
|
PACKAGECONFIG[run-shaping] = "-Drun-shaping=enabled,-Drun-shaping=disabled,utf8proc"
|
|
|
|
|
|
|
|
PACKAGECONFIG ?= " \
|
|
|
|
grapheme-shaping \
|
|
|
|
run-shaping \
|
|
|
|
"
|
|
|
|
|
2021-06-06 19:01:21 +02:00
|
|
|
BBCLASSEXTEND = ""
|
|
|
|
|