From bfa438197b655d0421c4adcc6598b72af8c01193 Mon Sep 17 00:00:00 2001 From: Giuseppe Date: Fri, 24 Dec 2010 18:42:30 +0000 Subject: [PATCH] Added new package: libexosip2, version 3.3.0 --- libexosip2/PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libexosip2/PKGBUILD diff --git a/libexosip2/PKGBUILD b/libexosip2/PKGBUILD new file mode 100644 index 000000000..8cd3cfd01 --- /dev/null +++ b/libexosip2/PKGBUILD @@ -0,0 +1,26 @@ +# +# Platform Packages for Chakra, part of chakra-project.org +# +# contributor (x86_64): Giuseppe CalĂ  + +# include global config +source ../_buildscripts/${current_repo}-${_arch}-cfg.conf + +pkgname=libexosip2 +pkgver=3.3.0 +pkgrel=1 +pkgdesc="A library that hides the complexity of using SIP for multimedia session establishement" +arch=('i686' 'x86_64') +url="http://savannah.nongnu.org/projects/exosip/" +license=('GPL') +depends=('libosip2>=3.1.0' 'openssl') +options=(!libtool) +source=(http://download.savannah.nongnu.org/releases/exosip/libeXosip2-${pkgver/_/-}.tar.gz) +md5sums=('a2739067b51c1e417c5aef9606b285b2') + +build() { + cd "$srcdir/libeXosip2-${pkgver/_/-}" + ./configure --prefix=/usr + make + make DESTDIR="$pkgdir" install +}