blob: 41103b90ef2f94397f4dd9f0d568cba42ecfed0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libass'
version = '0.13.7'
licenses = [{License.BSD_like: ['COPYING']}]
stype = SourceType.TARBALL
url = 'https://github.com/libass/libass/releases/download/{0}/libass-{0}.tar.gz'.format(version)
tarball_checksum = '008a05a4ed341483d8399c8071d57a39853cf025412b32da277e76ad8226e158'
deps = ['freetype', 'fontconfig', 'libpng', 'fribidi']
files_libs = ['libass']
files_devel = ['include/ass', 'lib/pkgconfig/libass.pc']
def prepare(self):
if self.config.target_platform == Platform.IOS and \
self.config.target_arch in [Architecture.X86, Architecture.X86_64]:
self.append_env('LDFLAGS', '-Wl,-read_only_relocs,suppress')
if self.config.target_platform in (Platform.WINDOWS, Platform.ANDROID):
# Needed for codepage conversion support in subtitles
self.deps.append('libiconv')
|