mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
726 B
Bash
24 lines
726 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Darwin Bautista <djclue917@gmail.com>
|
||
|
|
||
|
pkgname=libexosip2
|
||
|
pkgver=3.2.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=('2186453c58b3da4e302d1456fffa02bf')
|
||
|
|
||
|
build() {
|
||
|
cd "$startdir/src/libeXosip2-${pkgver/_/-}"
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR="$startdir/pkg" install
|
||
|
}
|