mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-15 16:29:16 +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
901 B
BlitzBasic
27 lines
901 B
BlitzBasic
DESCRIPTION = "libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format. It is mostly compatible with VSFilter."
|
|
HOMEPAGE = "https://github.com/libass/libass"
|
|
SECTION = "libs/multimedia"
|
|
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a42532a0684420bdb15556c3cdd49a75"
|
|
|
|
DEPENDS = "fontconfig freetype fribidi harfbuzz"
|
|
|
|
SRC_URI = "git://github.com/libass/libass.git;protocol=https;branch=master"
|
|
SRCREV = "bbb3c7f1570a4a021e52683f3fbdf74fe492ae84"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGECONFIG[asm] = "--enable-asm,--disable-asm,nasm-native"
|
|
# use larger tiles in the rasterizer (better performance, slightly worse quality)
|
|
PACKAGECONFIG[largetiles] = "--enable-large-tiles,--disable-large-tiles"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG:append:x86-64 = " asm"
|
|
|
|
PACKAGES =+ "${PN}-tests"
|
|
|
|
FILES:${PN}-tests = " \
|
|
${libdir}/test/test \
|
|
"
|