mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-26 10:12:13 +01:00
Package description: SIPp is a free Open Source test tool / traffic generator for the SIP protocol. It includes a few basic SipStone user agent scenarios (UAC and UAS) and establishes and releases multiple calls with the INVITE and BYE methods. It can also reads custom XML scenario files describing from very simple to complex call flows. It features the dynamic display of statistics about running tests (call rate, round trip delay, and message statistics), periodic CSV statistics dumps, TCP and UDP over multiple sockets or multiplexed with retransmission management and dynamically adjustable call rates. Website: http://sipp.sourceforge.net/
31 lines
746 B
Plaintext
31 lines
746 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=sipp
|
|
pkgver=3.2
|
|
pkgrel=0
|
|
pkgdesc="A test tool / traffic generator for the SIP protocol"
|
|
url="http://sipp.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="openssl-dev libpcap-dev ncurses-dev"
|
|
install=""
|
|
subpackages=""
|
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname.svn.tar.gz"
|
|
_builddir="$srcdir"/$pkgname.svn
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -m755 -D "$_builddir"/$pkgname \
|
|
"$pkgdir"/usr/sbin/$pkgname || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="2a3a60cb4317dcf8eb5482f6a955e4d0 sipp.svn.tar.gz"
|