summaryrefslogtreecommitdiff
path: root/community/libexosip2/PKGBUILD
blob: 60b3103ae43f77e27efdc13c703c31b3ff9f9cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 61348 2011-12-28 15:42:18Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Darwin Bautista <djclue917@gmail.com>

pkgname=libexosip2
pkgver=3.6.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.6.0' 'openssl')
options=(!libtool)
source=(http://download.savannah.nongnu.org/releases/exosip/libeXosip2-${pkgver/_/-}.tar.gz)
md5sums=('6fef4c110f1305048a8b307f440933d9')

build() {
  cd "$srcdir/libeXosip2-${pkgver/_/-}"
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/libeXosip2-${pkgver/_/-}"
  make DESTDIR="$pkgdir" install
}