mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
44 lines
997 B
Plaintext
44 lines
997 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=sngrep
|
|
pkgver=1.4.5
|
|
pkgrel=0
|
|
pkgdesc="A tool for displaying SIP call message flows from a terminal"
|
|
url="https://github.com/irontec/sngrep"
|
|
arch="all"
|
|
license="GPL"
|
|
depends="sed"
|
|
makedepends="autoconf automake ncurses-dev libpcap-dev
|
|
pcre-dev gnutls-dev libgcrypt-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.zip::https://github.com/irontec/$pkgname/archive/v$pkgver.zip"
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
cd "$builddir"
|
|
./bootstrap.sh
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-gnutls \
|
|
--with-pcre \
|
|
--enable-ipv6
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|
|
sha512sums="2b5ce618ff6f876ec340361c5d674524eb8f56fc84325a13d714bd96b4e249ac7fa56cfd442654ea57aef489f07862260896fcfb16955c759a7cf91e6654c8af sngrep-1.4.5.zip"
|