blob: 96f17aa53b99849884829324b59063f61231e3c9 (
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
28
29
30
31
|
# Maintainer: David Sugar <tychosoft@gmail.com>
# Contributor: David Sugar <tychosoft@gmail.com>
pkgname=libosip2
pkgver=5.1.0
pkgrel=0
pkgdesc="oSIP is an implementation of SIP"
url="https://www.gnu.org/software/osip/"
arch="all"
license="LGPL-2.1-or-later"
makedepends="autoconf automake libtool"
options="libtool"
subpackages="$pkgname-dev $pkgname-doc"
source="http://ftp.gnu.org/gnu/osip/libosip2-$pkgver.tar.gz"
prepare() {
default_prepare
./autogen.sh
}
build() {
./configure \
--prefix=/usr \
--with-gnu-ld
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="391c9a0ea399f789d7061b0216d327eecba5bbf0429659f4f167604b9e703e1678ba6f58079aa4f84b3636a937064ecfb92e985368164fcb679e95654e43d65b libosip2-5.1.0.tar.gz"
|