diff options
-rw-r--r-- | community/sngrep/APKBUILD | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/community/sngrep/APKBUILD b/community/sngrep/APKBUILD index 08fb8a8a45..e1063d1161 100644 --- a/community/sngrep/APKBUILD +++ b/community/sngrep/APKBUILD @@ -2,27 +2,24 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=sngrep pkgver=1.4.6 -pkgrel=0 +pkgrel=1 pkgdesc="A tool for displaying SIP call message flows from a terminal" url="https://github.com/irontec/sngrep" arch="all !ppc64le" -license="GPL-3.0" +license="GPL-3.0-or-later" depends="sed" -makedepends="autoconf automake ncurses-dev libpcap-dev +makedepends="autoconf automake ncurses-dev libpcap-dev pcre-dev libgcrypt-dev openssl-dev" subpackages="$pkgname-doc" -source="$pkgname-$pkgver.zip::https://github.com/irontec/$pkgname/archive/v$pkgver.zip +source="$pkgname-$pkgver.zip::https://github.com/irontec/sngrep/archive/v$pkgver.zip stdin-reopen-musl.patch" -builddir="$srcdir"/$pkgname-$pkgver prepare() { default_prepare - cd "$builddir" ./bootstrap.sh } build() { - cd "$builddir" ./configure \ --prefix=/usr \ --with-openssl \ @@ -33,12 +30,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir/" install } |