core/libexosip2/PKGBUILD
2016-09-15 09:42:39 +01:00

23 lines
567 B
Bash

pkgname=libexosip2
pkgver=5.0.0
pkgrel=1
pkgdesc="A library that hides the complexity of using SIP for multimedia session establishement"
arch=('x86_64')
url="http://savannah.nongnu.org/projects/exosip/"
license=('GPL')
depends=("libosip2>=$pkgver" 'openssl')
md5sums=('91a69fdd7d5da5b94e71b764cabb2e29')
options=(!libtool)
source=("http://download.savannah.nongnu.org/releases/exosip/$pkgname-${pkgver/_/-}.tar.gz")
build() {
cd $pkgname-${pkgver/_/-}
./configure --prefix=/usr
make
}
package() {
cd $pkgname-${pkgver/_/-}
make DESTDIR=$pkgdir install
}