# -*- 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.5.3' url = 'https://github.com/Haivision/srt/archive/v%(version)s.tar.gz' tarball_checksum = 'befaeb16f628c46387b898df02bc6fba84868e86a6f6d8294755375b9932d777' licenses = [License.MPLv2] stype = SourceType.TARBALL btype = BuildType.CMAKE cmake_generator = 'ninja' can_msvc = False # CXX11 builds stuff we don't need, and causes a build failure on mingw configure_options = '-DUSE_ENCLIB=openssl -DENABLE_CXX11=OFF' # openssl on Linux use_system_libs = True files_libs = ['libsrt'] files_devel = ['include/srt', '%(libdir)s/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') 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()