1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.tools.libtool import LibtoolLibrary
class Recipe(recipe.Recipe):
name = 'orc'
version = '0.4.38'
stype = SourceType.TARBALL
# These properties are only used when stype is TARBALL
url = 'https://gstreamer.freedesktop.org/src/orc/orc-%(version)s.tar.xz'
tarball_checksum = 'a55a98d4772567aa3faed8fb84d540c3db77eaba16d3e2e10b044fbc9228668d'
# These properties are only used when stype is GIT
remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/orc.git'}
commit = 'origin/main'
patches = [
# Remove after the iOS Orc situation is resolved
# https://gitlab.freedesktop.org/gstreamer/orc/-/merge_requests/175
'orc/0001-orccpu-arm-Only-enable-on-Apple-arm64-if-running-on-.patch',
]
btype = BuildType.MESON
licenses = [{License.BSD_like: ['COPYING']}]
meson_options = {'benchmarks': 'disabled', 'tests': 'disabled',
'tools': 'enabled', 'orc-test': 'enabled'}
files_libs = ['liborc-0.4']
files_devel = ['include/orc-0.4', '%(libdir)s/pkgconfig/orc-0.4.pc',
'bin/orcc%(bext)s']
def prepare(self):
# Don't build testing helper library on ios
if self.config.target_platform != Platform.IOS:
self.files_libs.append('liborc-test-0.4')
self.files_devel.append('bin/orc-bugreport%(bext)s')
else:
self.meson_options['orc-test'] = 'disabled'
def post_install(self):
dependency_libs = []
if self.config.target_platform == Platform.ANDROID:
dependency_libs += ['-lm', '-llog']
lib = LibtoolLibrary('orc-0.4', None, None, None, self.config.libdir,
self.config.target_platform, deps=dependency_libs)
lib.save()
if self.config.target_platform != Platform.IOS:
lib = LibtoolLibrary('orc-test-0.4', None, None, None, self.config.libdir,
self.config.target_platform, deps=dependency_libs + ['orc-0.4']).save()
super().post_install()
|