diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/sofia-sip/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/sofia-sip/PKGBUILD')
-rw-r--r-- | extra/sofia-sip/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/sofia-sip/PKGBUILD b/extra/sofia-sip/PKGBUILD new file mode 100644 index 000000000..244979be8 --- /dev/null +++ b/extra/sofia-sip/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 75544 2010-04-01 19:17:05Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Bjorn Lindeijer <bjorn lindeijer nl> +pkgname=sofia-sip +pkgver=1.12.10 +pkgrel=2 +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 "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --with-openssl + make || return 1 + make DESTDIR="$pkgdir" install +} |