mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
750 B
Bash
23 lines
750 B
Bash
# $Id: PKGBUILD 44978 2009-07-05 23:18:36Z giovanni $
|
|
# Maintainer: Jeff Mickey <jeff@archlinux.org>
|
|
# Contributor: Michel Brabants <michel.brabants@euphonynet.be>
|
|
|
|
pkgname=libzrtpcpp
|
|
pkgver=1.4.2
|
|
pkgrel=3
|
|
pkgdesc="ZRTP is an extension to Real-time Transport Protocol (RTP) which describes a method of Diffie-Hellman key agreement for Secure Real-time Transport Protocol (SRTP)."
|
|
arch=('i686' 'x86_64')
|
|
url="http://zfoneproject.com"
|
|
license=('GPL')
|
|
depends=('ccrtp>=1.7.0')
|
|
makedepends=('pkgconfig')
|
|
options=(!libtool)
|
|
source=(ftp://ftp.gnu.org/gnu/ccrtp/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
md5sums=('2360f0f8dc0ddab3e1691ee146c4b92e')
|