diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2018-10-16 16:09:17 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2019-12-09 18:22:06 -0500 |
commit | 9e44a60e56f0b8568f46aa486f592c518b9ccbfd (patch) | |
tree | c9cd316ec29b24a7229d8f46328fa93c3201172c /recipes/libsrtp.recipe | |
parent | f007e111c3b77ab6ed17e7865283538eba32ea36 (diff) |
libsrtp: Update to v2.2
Diffstat (limited to 'recipes/libsrtp.recipe')
-rw-r--r-- | recipes/libsrtp.recipe | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/recipes/libsrtp.recipe b/recipes/libsrtp.recipe index aeb08b15..540425f4 100644 --- a/recipes/libsrtp.recipe +++ b/recipes/libsrtp.recipe @@ -6,16 +6,15 @@ import shutil class Recipe(recipe.Recipe): name = 'libsrtp' - version = '1.6.0' + version = '2.2.0' stype = SourceType.TARBALL url = 'https://github.com/cisco/%(name)s/archive/v%(version)s.tar.gz' - tarball_checksum = '1a3e7904354d55e45b3c5c024ec0eab1b8fa76fdbf4dd2ea2625dad2b3c6edde' + tarball_checksum = '44fd7497bce78767e96b54a11bca520adb2ad32effd515f04bce602b60a1a50b' licenses = [{License.BSD_like: ['LICENSE']}] - patches = ['libsrtp/0001-Don-t-create-a-symlink-if-there-is-no-SHAREDLIBVERSI.patch', - 'libsrtp/0002-ios-Remove-flags-incompatible-with-fembed-bitcode.patch'] + patches = ['libsrtp/0002-ios-Remove-flags-incompatible-with-fembed-bitcode.patch']# - files_libs = ['libsrtp'] - files_devel = ['include/srtp', 'lib/pkgconfig/libsrtp.pc'] + files_libs = ['libsrtp2'] + files_devel = ['include/srtp2', 'lib/pkgconfig/libsrtp2.pc'] def prepare(self): # Don't accidentially build with pcap support @@ -29,7 +28,8 @@ class Recipe(recipe.Recipe): shutil.copy(os.path.join(self.build_dir, 'srtp.def'), libdir) def post_install(self): - libtool_la = LibtoolLibrary('srtp', 1, None, None, self.config.libdir, + # XXX: Don't forget to keep this in sync with the library version! + libtool_la = LibtoolLibrary('srtp2', 1, None, None, self.config.libdir, self.config.target_platform) libtool_la.save() super().post_install() |