2010-12-25 02:42:30 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=libexosip2
|
2012-01-13 02:10:10 +08:00
|
|
|
pkgver=3.6.0
|
2010-12-25 02:42:30 +08:00
|
|
|
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')
|
2012-01-13 02:10:10 +08:00
|
|
|
depends=('libosip2>=3.6.0' 'openssl')
|
2010-12-25 02:42:30 +08:00
|
|
|
options=(!libtool)
|
|
|
|
source=(http://download.savannah.nongnu.org/releases/exosip/libeXosip2-${pkgver/_/-}.tar.gz)
|
2012-01-13 02:10:10 +08:00
|
|
|
md5sums=('6fef4c110f1305048a8b307f440933d9')
|
2010-12-25 02:42:30 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/libeXosip2-${pkgver/_/-}"
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
2012-01-13 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/libeXosip2-${pkgver/_/-}"
|
2010-12-25 02:42:30 +08:00
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|