23 lines
518 B
Plaintext
23 lines
518 B
Plaintext
# Description: Secure Realtime transport protocol library
|
|
# URL: http://srtp.sourceforge.net/srtp.html
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on:
|
|
|
|
name=libsrtp
|
|
version=1.5.2
|
|
release=1
|
|
source=(https://github.com/cisco/$name/archive/v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-debug
|
|
make shared_library libsrtp.a
|
|
make DESTDIR=$PKG install
|
|
|
|
# make syumbolic link
|
|
rm $PKG/usr/lib/libsrtp.so
|
|
ln -s libsrtp.so.1 $PKG/usr/lib/libsrtp.so
|
|
}
|