summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-06-10 11:32:39 +0800
committerKhem Raj <raj.khem@gmail.com>2025-06-09 21:24:09 -0700
commit4a20c58f1212f99a2bbb95364f369c93f12557e6 (patch)
tree82dfd8ec573cf5e3fd0bdfc4215a3ea98d6a2cde /meta-oe/recipes-multimedia/libass/libass_0.17.4.bb
parente9f35175cd976b9d3b2f941e0db49d5bfbb85bb2 (diff)
downloadmeta-openembedded-4a20c58f1212f99a2bbb95364f369c93f12557e6.tar.gz
libass: upgrade 0.17.3 -> 0.17.4
Changelog: ========== - add new API to prune old events from memory - ass_prune_events for manual pruning - ass_configure_prune to set up automatic pruning - add ASS_OVERRIDE_BIT_BLUR flag - fontconfig: fix minor memory leaks in pathological font setups - coretext: fix build on older compilers or Mac OS X 10.5 - checkasm: fix build for older compilers - aarch64: fix assembly build on strict compilers due to oversized align - meson: improve ASM configuration on x86 Android - meson: align MSVC warnings and optimisations closer to gcc-like compilers - meson can now build all dev utility executables Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia/libass/libass_0.17.4.bb')
-rw-r--r--meta-oe/recipes-multimedia/libass/libass_0.17.4.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb b/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb
new file mode 100644
index 0000000000..297b7c01e8
--- /dev/null
+++ b/meta-oe/recipes-multimedia/libass/libass_0.17.4.bb
@@ -0,0 +1,27 @@
1DESCRIPTION = "libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format. It is mostly compatible with VSFilter."
2HOMEPAGE = "https://github.com/libass/libass"
3SECTION = "libs/multimedia"
4
5LICENSE = "ISC"
6LIC_FILES_CHKSUM = "file://COPYING;md5=a42532a0684420bdb15556c3cdd49a75"
7
8DEPENDS = "fontconfig freetype fribidi harfbuzz"
9
10SRC_URI = "git://github.com/libass/libass.git;protocol=https;branch=master"
11SRCREV = "bbb3c7f1570a4a021e52683f3fbdf74fe492ae84"
12S = "${WORKDIR}/git"
13
14inherit autotools pkgconfig
15
16PACKAGECONFIG[asm] = "--enable-asm,--disable-asm,nasm-native"
17# use larger tiles in the rasterizer (better performance, slightly worse quality)
18PACKAGECONFIG[largetiles] = "--enable-large-tiles,--disable-large-tiles"
19
20PACKAGECONFIG ??= ""
21PACKAGECONFIG:append:x86-64 = " asm"
22
23PACKAGES =+ "${PN}-tests"
24
25FILES:${PN}-tests = " \
26 ${libdir}/test/test \
27"