]> git.pld-linux.org Git - packages/sipp.git/blame - sipp.spec
- new spec
[packages/sipp.git] / sipp.spec
CommitLineData
babbdfd4
JK
1#
2Summary: SIPp - a performance testing tool for the SIP protocol
3Name: sipp
4Version: 3.0
5Release: 1
6License: GPL v2+ except two files under BSD
7Group: Applications
8Source0: http://dl.sourceforge.net/sipp/%{name}-%{version}.src.tar.gz
9# Source0-md5: 31906c63eb5efa09e0b148c27435cdac
10URL: http://sipp.sourceforge.net/
11BuildRequires: libpcap-devel
12BuildRequires: libstdc++-devel
13BuildRequires: ncurses-devel
14BuildRequires: openssl-devel
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18SIPp is a performance testing tool for the SIP protocol. It includes a
19few basic SipStone user agent scenarios (UAC and UAS) and establishes
20and releases multiple calls with the INVITE and BYE methods. It can
21also reads XML scenario files describing any performance testing
22configuration. It features the dynamic display of statistics about
23running tests (call rate, round trip delay, and message statistics),
24periodic CSV statistics dumps, TCP and UDP over multiple sockets or
25multiplexed with retransmission management, regular expressions and
26variables in scenario files, and dynamically adjustable call rates.
27
28SIPp can be used to test many real SIP equipements like SIP proxies,
29B2BUAs, SIP media servers, SIP/x gateways, SIP PBX, ... It is also
30very useful to emulate thousands of user agents calling your SIP
31system.
32
33%prep
34%setup -q -n %{name}-%{version}.src
35
36%build
37
38%{__make} pcapplay_ossl \
39 CC="%{__cc}" \
40 CPP="%{__cxx}" \
41 CCLINK="%{__cxx}" \
42 EXTRACFLAGS="%{rpmcflags}" \
43 EXTRACPPFLAGS="%{rpmcxxflags}" \
44 EXTRALFLAGS="%{rpmldflags}" \
45 INCDIR="-I. -I/usr/include/ncurses"
46
47%install
48rm -rf $RPM_BUILD_ROOT
49install -d $RPM_BUILD_ROOT%{_bindir}
50install sipp $RPM_BUILD_ROOT%{_bindir}
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%files
56%defattr(644,root,root,755)
57%doc LICENSE.txt MEDIA.txt README.txt pcap tools
58%attr(755,root,root) %{_bindir}/*
This page took 0.105183 seconds and 4 git commands to generate.