summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-multimedia/libass/libass_0.14.0.bb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2018-03-24 14:49:40 +0100
committerArmin Kuster <akuster808@gmail.com>2018-04-08 17:00:06 -0700
commitc1d6f60e5aaa639dd0e509daf45300ca9b5820f2 (patch)
treee1f1912a104766c03fde7bcf65dd19a523ea2671 /meta-oe/recipes-multimedia/libass/libass_0.14.0.bb
parentfaba84ac9480b47f6de7833bc23ceca1b091e116 (diff)
downloadmeta-openembedded-c1d6f60e5aaa639dd0e509daf45300ca9b5820f2.tar.gz
libass: update 0.13.6 -> 0.14.0
* Migrate libass.inc into recipe - nothing else uses it * Use git repo to avoid github checksum trouble Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia/libass/libass_0.14.0.bb')
-rw-r--r--meta-oe/recipes-multimedia/libass/libass_0.14.0.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libass/libass_0.14.0.bb b/meta-oe/recipes-multimedia/libass/libass_0.14.0.bb
new file mode 100644
index 0000000000..3454a5c270
--- /dev/null
+++ b/meta-oe/recipes-multimedia/libass/libass_0.14.0.bb
@@ -0,0 +1,30 @@
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 = "enca fontconfig freetype libpng fribidi"
9
10SRC_URI = "git://github.com/libass/libass.git"
11SRCREV = "73284b676b12b47e17af2ef1b430527299e10c17"
12S = "${WORKDIR}/git"
13
14inherit autotools pkgconfig
15
16PACKAGECONFIG ??= ""
17PACKAGECONFIG[harfbuzz] = "--enable-harfbuzz,--disable-harfbuzz,harfbuzz"
18
19EXTRA_OECONF = " \
20 --enable-fontconfig \
21"
22
23# Disable compiling with ASM for x86 to avoid textrel
24EXTRA_OECONF_append_x86 = " --disable-asm"
25
26PACKAGES =+ "${PN}-tests"
27
28FILES_${PN}-tests = " \
29 ${libdir}/test/test \
30"