opt/libsrtp/Pkgfile

23 lines
518 B
Plaintext
Raw Normal View History

2015-08-05 08:30:27 +02:00
# 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
2015-08-05 08:30:27 +02:00
release=1
source=(https://github.com/cisco/$name/archive/v$version.tar.gz)
2015-08-05 08:30:27 +02:00
build() {
cd $name-$version
2015-08-05 08:30:27 +02:00
./configure \
--prefix=/usr \
--disable-debug
make shared_library libsrtp.a
2015-08-05 08:30:27 +02:00
make DESTDIR=$PKG install
# make syumbolic link
rm $PKG/usr/lib/libsrtp.so
ln -s libsrtp.so.1 $PKG/usr/lib/libsrtp.so
2015-08-05 08:30:27 +02:00
}