blob: 701c725aac2b6bb1ba5506aa369b30dd002a3910 (
plain)
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
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import shutil
from cerbero.tools.libtool import LibtoolLibrary
class Recipe(recipe.Recipe):
name = 'srt'
version = '1.4.2'
url = 'https://github.com/Haivision/srt/archive/v%(version)s.tar.gz'
tarball_checksum = '28a308e72dcbb50eb2f61b50cc4c393c413300333788f3a8159643536684a0c4'
licenses = [License.MPLv2]
stype = SourceType.TARBALL
btype = BuildType.CMAKE
configure_options = '-DUSE_ENCLIB=openssl -DENABLE_CXX11=OFF'
# openssl on Linux
use_system_libs = True
files_libs = ['libsrt']
files_devel = ['include/srt', 'lib/pkgconfig/srt.pc']
def prepare(self):
if self.config.target_platform != Platform.LINUX or self.config.cross_compiling():
self.deps.append('openssl')
if self.config.target_platform == Platform.ANDROID:
self.append_env('CXXFLAGS', '-frtti', '-fexceptions')
self.configure_options += ' -DUSE_GNUSTL=ON'
self.deps.append('gnustl')
def post_install(self):
libtool_la = LibtoolLibrary('srt', None, None, None, self.config.libdir,
self.config.target_platform, deps=['ssl', 'crypto'])
libtool_la.save()
super().post_install()
|