diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-08-05 15:31:23 +0900 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-08-05 15:31:23 +0900 |
commit | a8e323d3820f44cea42c4b8dec18146e77377270 (patch) | |
tree | 32f9f7c1850e4fc8b17f31ae12d1d15f80279f12 /libsrtp/Pkgfile | |
parent | 3389e6672fed56711831ccfdba5d9b3999f76dd2 (diff) | |
download | opt-a8e323d3820f44cea42c4b8dec18146e77377270.tar.gz opt-a8e323d3820f44cea42c4b8dec18146e77377270.tar.xz |
libsrtp: updated version 1.4.4 -> 1.5.2
Diffstat (limited to 'libsrtp/Pkgfile')
-rw-r--r-- | libsrtp/Pkgfile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/libsrtp/Pkgfile b/libsrtp/Pkgfile index 8212d2323..f83381461 100644 --- a/libsrtp/Pkgfile +++ b/libsrtp/Pkgfile @@ -4,17 +4,19 @@ # Depends on: name=libsrtp -version=1.4.4-git20140715 +version=1.5.2 release=1 -source=(http://www.mizrahi.com.ve/crux/dist/srtp-$version.tar.xz) -#source=(http://prdownloads.sf.net/srtp/srtp-$version.tgz) +source=(https://github.com/cisco/$name/archive/v$version.tar.gz) build() { - cd srtp - autoconf + cd $name-$version ./configure \ --prefix=/usr \ --disable-debug - make + 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 } |