summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7428fc62fb3d1a8e30663b2b728726a967eb95c3 (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
27
# Maintainer : Guillaume Horel <guillaume.horel@gmail.com>
_pkgname=sofia-sip
pkgname=sofia-sip-bc
pkgver=1.13.45bc
pkgrel=1
pkgdesc="An open-source SIP User-Agent library"
arch=('x86_64')
url="http://sofia-sip.sourceforge.net"
options=('zipman')
license=('LGPL')
depends=('glib2' 'openssl')
provides=('sofia-sip')
conflicts=('sofia-sip')
source=("https://gitlab.linphone.org/BC/public/external/sofia-sip/-/archive/$pkgver/sofia-sip-$pkgver.tar.gz")
sha256sums=('12b4a28a3de90d06ea24927f8266a16f84974a132ce2965e3d5bd02dbdde942d')

build() {
  cd "$_pkgname-$pkgver"
  ./autogen.sh
  ./configure --prefix=/usr --with-openssl
  make
}

package() {
  cd "$_pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}