# Copyright (c) 2014-2015, Centricular Ltd. All rights reserved. # Copyright (c) 2015, Ericsson AB. All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: # # 1. Redistributions of source code must retain the above copyright notice, this # list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY # OF SUCH DAMAGE. # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): name = 'libusrsctp' version = 'master' remotes = {'origin': 'https://github.com/sctplab/usrsctp.git'} commit = 'f668bb69123fdbd0dd027b590536d89118964dca' stype = SourceType.GIT btype = BuildType.MESON licenses = [{License.BSD_like: ['LICENSE.md']}] # We do not need the socket API since we will wrap inside a DTLS packet # anyway, because we use SCTP for WebRTC data channels. meson_options = {'sctp_inet': 'false', 'sctp_inet6': 'false', 'sctp_build_programs': 'false'} files_libs = ['libusrsctp'] files_devel = ['include/usrsctp.h'] def prepare(self): if self.using_msvc(): self.library_type = LibraryType.SHARED def post_install(self): # XXX: Don't forget to keep this in sync with the library version! dependency_libs=[] libtool_la = LibtoolLibrary('usrsctp', 0, None, None, self.config.libdir, self.config.target_platform, deps=dependency_libs) libtool_la.save() super().post_install()