blob: 6b6ef848e8bdfa1111c4c6ef025ca696d93a7890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $Id: PKGBUILD 29647 2010-10-18 08:56:03Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Darwin Bautista <djclue917@gmail.com>
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
}
|