mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
645 B
Bash
22 lines
645 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Bjorn Lindeijer <bjorn lindeijer nl>
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
pkgname=sofia-sip
|
||
|
pkgver=1.12.10
|
||
|
pkgrel=1
|
||
|
pkgdesc="An open-source SIP User-Agent library"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://sofia-sip.sourceforge.net"
|
||
|
options=('!libtool' 'zipman')
|
||
|
license=('LGPL')
|
||
|
depends=('glib2' 'openssl')
|
||
|
source=(http://downloads.sourceforge.net/sofia-sip/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('9e07fde3ad2009e44d1100ca3950d02b')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --with-openssl
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|