diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-08-05 15:30:27 +0900 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2015-08-05 15:30:27 +0900 |
commit | 3389e6672fed56711831ccfdba5d9b3999f76dd2 (patch) | |
tree | f7b6d3e8cc508193ce61e35c81c5b547b2377443 /libsrtp | |
parent | ecd6d664877f5cf0e79874045152dd4aaecca890 (diff) | |
download | opt-3389e6672fed56711831ccfdba5d9b3999f76dd2.tar.gz opt-3389e6672fed56711831ccfdba5d9b3999f76dd2.tar.xz |
libsrtp: initial commit, version 1.4.4
Diffstat (limited to 'libsrtp')
-rw-r--r-- | libsrtp/.footprint | 42 | ||||
-rw-r--r-- | libsrtp/.md5sum | 1 | ||||
-rw-r--r-- | libsrtp/Pkgfile | 20 |
3 files changed, 63 insertions, 0 deletions
diff --git a/libsrtp/.footprint b/libsrtp/.footprint new file mode 100644 index 000000000..026576d04 --- /dev/null +++ b/libsrtp/.footprint @@ -0,0 +1,42 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/srtp/ +-rw-r--r-- root/root usr/include/srtp/aes.h +-rw-r--r-- root/root usr/include/srtp/aes_cbc.h +-rw-r--r-- root/root usr/include/srtp/aes_icm.h +-rw-r--r-- root/root usr/include/srtp/alloc.h +-rw-r--r-- root/root usr/include/srtp/auth.h +-rw-r--r-- root/root usr/include/srtp/cipher.h +-rw-r--r-- root/root usr/include/srtp/config.h +-rw-r--r-- root/root usr/include/srtp/crypto.h +-rw-r--r-- root/root usr/include/srtp/crypto_kernel.h +-rw-r--r-- root/root usr/include/srtp/crypto_math.h +-rw-r--r-- root/root usr/include/srtp/crypto_types.h +-rw-r--r-- root/root usr/include/srtp/cryptoalg.h +-rw-r--r-- root/root usr/include/srtp/datatypes.h +-rw-r--r-- root/root usr/include/srtp/ekt.h +-rw-r--r-- root/root usr/include/srtp/err.h +-rw-r--r-- root/root usr/include/srtp/getopt_s.h +-rw-r--r-- root/root usr/include/srtp/gf2_8.h +-rw-r--r-- root/root usr/include/srtp/hmac.h +-rw-r--r-- root/root usr/include/srtp/integers.h +-rw-r--r-- root/root usr/include/srtp/kernel_compat.h +-rw-r--r-- root/root usr/include/srtp/key.h +-rw-r--r-- root/root usr/include/srtp/null_auth.h +-rw-r--r-- root/root usr/include/srtp/null_cipher.h +-rw-r--r-- root/root usr/include/srtp/prng.h +-rw-r--r-- root/root usr/include/srtp/rand_source.h +-rw-r--r-- root/root usr/include/srtp/rdb.h +-rw-r--r-- root/root usr/include/srtp/rdbx.h +-rw-r--r-- root/root usr/include/srtp/rtp.h +-rw-r--r-- root/root usr/include/srtp/rtp_priv.h +-rw-r--r-- root/root usr/include/srtp/sha1.h +-rw-r--r-- root/root usr/include/srtp/srtp.h +-rw-r--r-- root/root usr/include/srtp/srtp_priv.h +-rw-r--r-- root/root usr/include/srtp/stat.h +-rw-r--r-- root/root usr/include/srtp/ut_sim.h +-rw-r--r-- root/root usr/include/srtp/xfm.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libsrtp.a +lrwxrwxrwx root/root usr/lib/libsrtp.so -> libsrtp.so.1.4.5 +-rwxr-xr-x root/root usr/lib/libsrtp.so.1.4.5 diff --git a/libsrtp/.md5sum b/libsrtp/.md5sum new file mode 100644 index 000000000..f39e1aa68 --- /dev/null +++ b/libsrtp/.md5sum @@ -0,0 +1 @@ +223717d345774680f0e5b4ef1644efb7 srtp-1.4.4-git20140715.tar.xz diff --git a/libsrtp/Pkgfile b/libsrtp/Pkgfile new file mode 100644 index 000000000..8212d2323 --- /dev/null +++ b/libsrtp/Pkgfile @@ -0,0 +1,20 @@ +# 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.4.4-git20140715 +release=1 +source=(http://www.mizrahi.com.ve/crux/dist/srtp-$version.tar.xz) +#source=(http://prdownloads.sf.net/srtp/srtp-$version.tgz) + +build() { + cd srtp + autoconf + ./configure \ + --prefix=/usr \ + --disable-debug + make + make DESTDIR=$PKG install +} |