diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2019-09-22 19:23:22 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2019-09-22 19:23:22 +0000 |
commit | 7337d7e4947f69e1cf988f096f6b8902f0c404e7 (patch) | |
tree | 323ec1045e23bb7583b4a60239779adebefb9a0f /testing/sipgrep | |
parent | 2ea8b5069d14c893193ddbc7fb3e2acbdd45622b (diff) | |
download | aports-7337d7e4947f69e1cf988f096f6b8902f0c404e7.tar.bz2 aports-7337d7e4947f69e1cf988f096f6b8902f0c404e7.tar.xz |
testing/sipgrep: new aport
Diffstat (limited to 'testing/sipgrep')
-rw-r--r-- | testing/sipgrep/APKBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/sipgrep/APKBUILD b/testing/sipgrep/APKBUILD new file mode 100644 index 0000000000..d0fc940caa --- /dev/null +++ b/testing/sipgrep/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname="sipgrep" +pkgver="2.1.0" +pkgrel=0 +pkgdesc="Display and Troubleshoot SIP signaling over IP networks in console" +url="https://www.sipcapture.org/" +arch="all" +license="GPL-3.0" +makedepends="pcre-dev libpcap-dev" +options="!check" #no test provided +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/sipcapture/sipgrep/archive/$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + ./configure --prefix=/usr + make +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="81b7941f973f95239fe348846118031b0e6eba1f404d9568fd100fe6e4b51968fb29097f1ab3f0e079ef9e03d362e5e1e71bcafca87ed1e72941bb2df466eecd sipgrep-2.1.0.tar.gz" |