# $Id: PKGBUILD 184148 2013-05-02 19:39:49Z eric $ # Maintainer: # Contributor: Sergej Pupykin # Contributor: Jeff Mickey # Contributor: John Proctor # Contributor: Alexander Rødseth pkgname=ccrtp pkgver=2.0.5 pkgrel=1 pkgdesc="An implementation of RTP, the real-time transport protocol from the IETF" arch=('i686' 'x86_64') url="http://www.gnu.org/software/ccrtp/" license=('GPL' 'custom') depends=('ucommon' 'libgcrypt') options=('!libtool') install=$pkgname.install source=("ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}) md5sums=('7f462f6b31c68180a93f36b06944fef4' 'SKIP') build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install install -Dm644 COPYING.addendum "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }