diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2006-11-06 11:17:46 -0400 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2006-11-06 11:17:46 -0400 |
commit | b336f167c29f43db83a6dd44682d180b06d87204 (patch) | |
tree | 0bd3a27b560eca1f6b352c4f1201c3e01b7ba29b | |
parent | b1d647bf8fb185ca83040439cb53f9cc3188d9da (diff) | |
download | contrib-b336f167c29f43db83a6dd44682d180b06d87204.tar.gz contrib-b336f167c29f43db83a6dd44682d180b06d87204.tar.xz |
ccrtp: initial commit
-rw-r--r-- | ccrtp/.footprint | 25 | ||||
-rw-r--r-- | ccrtp/.md5sum | 1 | ||||
-rw-r--r-- | ccrtp/Pkgfile | 18 |
3 files changed, 44 insertions, 0 deletions
diff --git a/ccrtp/.footprint b/ccrtp/.footprint new file mode 100644 index 000000000..d837105eb --- /dev/null +++ b/ccrtp/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/ccrtp/ +-rw-r--r-- root/root usr/include/ccrtp/base.h +-rw-r--r-- root/root usr/include/ccrtp/channel.h +-rw-r--r-- root/root usr/include/ccrtp/cqueue.h +-rw-r--r-- root/root usr/include/ccrtp/ext.h +-rw-r--r-- root/root usr/include/ccrtp/formats.h +-rw-r--r-- root/root usr/include/ccrtp/ioqueue.h +-rw-r--r-- root/root usr/include/ccrtp/iqueue.h +-rw-r--r-- root/root usr/include/ccrtp/oqueue.h +-rw-r--r-- root/root usr/include/ccrtp/pool.h +-rw-r--r-- root/root usr/include/ccrtp/queuebase.h +-rw-r--r-- root/root usr/include/ccrtp/rtcppkt.h +-rw-r--r-- root/root usr/include/ccrtp/rtp.h +-rw-r--r-- root/root usr/include/ccrtp/rtppkt.h +-rw-r--r-- root/root usr/include/ccrtp/sources.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libccrtp1-1.4.so.0 -> libccrtp1-1.4.so.0.0.1 +-rwxr-xr-x root/root usr/lib/libccrtp1-1.4.so.0.0.1 +-rw-r--r-- root/root usr/lib/libccrtp1.a +-rwxr-xr-x root/root usr/lib/libccrtp1.la +lrwxrwxrwx root/root usr/lib/libccrtp1.so -> libccrtp1-1.4.so.0.0.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libccrtp1.pc diff --git a/ccrtp/.md5sum b/ccrtp/.md5sum new file mode 100644 index 000000000..d98d7151a --- /dev/null +++ b/ccrtp/.md5sum @@ -0,0 +1 @@ +019754d20b46b1b23f3bc368aa58d662 ccrtp-1.5.0.tar.gz diff --git a/ccrtp/Pkgfile b/ccrtp/Pkgfile new file mode 100644 index 000000000..750075689 --- /dev/null +++ b/ccrtp/Pkgfile @@ -0,0 +1,18 @@ +# $Id: $ +# Description: RTP protocol stack +# URL: http://www.gnu.org/software/ccrtp/ +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: commoncpp2 + +name=ccrtp +version=1.5.0 +release=1 +source=(http://dl.sourceforge.net/sourceforge/gnutelephony/$name-$version.tar.gz) + +build () { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/info +} |