blob: ccc188c2b3e060efba626e1ecc2146439a77b94a (
plain)
1 # Description: Secure Realtime transport protocol library
2 # URL: git://git.linphone.org/srtp.git
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on:
5
6 name=libsrtp
7 version=git20150922
8 release=1
9 source=(http://www.mizrahi.com.ve/crux/dist/srtp-$version.tar.gz)
10
11 build() {
12 cd srtp
13 ./configure \
14 --prefix=/usr \
15 --disable-debug
16 make
17 make DESTDIR=$PKG install
18 }
|