diff options
author | David Sugar <tychosoft@gmail.com> | 2019-10-16 12:52:01 -0400 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2019-10-19 12:33:29 +0200 |
commit | f5e1b468d90a7e56648b20176fe1028cd72a0a7a (patch) | |
tree | 8e524edd6ee381743bc47c291d9aecb59556a01b /testing/libexosip2 | |
parent | 986725dd451724af675d58c2ee3379539ee18aeb (diff) | |
download | aports-f5e1b468d90a7e56648b20176fe1028cd72a0a7a.tar.bz2 aports-f5e1b468d90a7e56648b20176fe1028cd72a0a7a.tar.xz |
testing/libexosip2: new aport
http://savannah.nongnu.org/projects/exosip
Extended osip2 library
Diffstat (limited to 'testing/libexosip2')
-rw-r--r-- | testing/libexosip2/APKBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/libexosip2/APKBUILD b/testing/libexosip2/APKBUILD new file mode 100644 index 0000000000..13fcafe1f5 --- /dev/null +++ b/testing/libexosip2/APKBUILD @@ -0,0 +1,42 @@ +# Maintainer: David Sugar <tychosoft@gmail.com> +# Contributor: David Sugar <tychosoft@gmail.com> +pkgname=libexosip2 +pkgver=5.1.0 +pkgrel=0 +pkgdesc="Extended osip2 library" +url="http://savannah.nongnu.org/projects/exosip" +arch="all" +license="GPL-2.0-or-later" +depends="openssl libosip2 c-ares" +makedepends=" + autoconf + automake + libtool + pkgconf + c-ares-dev + libosip2-dev + openssl-dev +" +options="libtool" +subpackages="$pkgname-dev" +source="http://download.savannah.nongnu.org/releases/exosip/libexosip2-$pkgver.tar.gz" + +prepare() { + default_prepare + ./autogen.sh +} + +build() { + ./configure \ + --prefix=/usr \ + --disable-tools \ + --enable-pthread \ + --with-gnu-ld + make +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="9ffddaaf9f62839b8aa1642a5b821d12e7e4d34097f92bcc9c90cabb97200e6a8faa2f0c9a62270f9b4b3ea783a90468e8491b1d5f834b335b4522b524496a19 libexosip2-5.1.0.tar.gz" |