blob: c872b477c6837d2a9f6ba5f7f2f57107e912ca36 (
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 # Depends on:
5
6 name=libsrtp
7 version=2.3.0
8 release=2
9 source=(#https://github.com/cisco/libsrtp/archive/v$version/$name-$version.tar.gz)
10 # ugly fix, but hey.. let's wait for a release here
11 https://github.com/cisco/libsrtp/archive/7d351de8177b33c96669bb79dc684a8dc64c2483/$name-$version-1.tar.gz)
12
13 build() {
14 #cd $name-$version
15 cd $name-7d351de8177b33c96669bb79dc684a8dc64c2483
16 autoreconf -fvi
17 ./configure \
18 --prefix=/usr \
19 --enable-openssl
20 make
21 make DESTDIR=$PKG install
22 }
|