blob: 490b7d20a595cbadc815bc00bb7537da85736101 (
plain)
1 # Description: Secure Realtime transport protocol library
2 # URL: https://github.com/cisco/libsrtp
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=libsrtp
6 version=2.3.0
7 release=3
8 source=(https://github.com/cisco/libsrtp/archive/v$version/$name-$version.tar.gz
9 libsrtp-2.3.0-shared-fix.patch)
10
11 build() {
12 cd $name-$version
13 patch -p1 -i $SRC/libsrtp-2.3.0-shared-fix.patch
14 CFLAGS+=' -fcommon' \
15 ./configure \
16 --prefix=/usr \
17 --enable-openssl
18 make
19 make DESTDIR=$PKG install
20 }
|