]> git.pld-linux.org Git - packages/tcpreplay.git/blame - tcpreplay.spec
- new
[packages/tcpreplay.git] / tcpreplay.spec
CommitLineData
d6437757
AG
1Summary: Replay captured network traffic
2Name: tcpreplay
3Version: 4.3.2
4Release: 1
5License: GPL v3
6Group: Applications/Networking
7Source0: https://github.com/appneta/tcpreplay/releases/download/v%{version}/%{name}-%{version}.tar.xz
8# Source0-md5: 084d6162a01a0be2cd61624f010002a0
9URL: http://tcpreplay.appneta.com/
10BuildRequires: libdnet-devel
11BuildRequires: libpcap-devel >= 0.8.0
12BuildRequires: tcpdump
13Requires: /usr/sbin/tcpdump
14
15%description
16Tcpreplay is a tool to replay captured network traffic. Currently,
17tcpreplay supports pcap (tcpdump) and snoop capture formats. Also
18included, is tcpprep a tool to pre-process capture files to allow
19increased performance under certain conditions as well as capinfo
20which provides basic information about capture files.
21
22%prep
23%setup -q
24
25%build
26%{__libtoolize}
27%{__aclocal}
28%{__autoconf}
29%{__autoheader}
30%{__automake}
31%configure
32
33%{__make}
34
35%install
36rm -rf $RPM_BUILD_ROOT
37%{__make} install \
38 DESTDIR=$RPM_BUILD_ROOT
39
40%clean
41rm -rf $RPM_BUILD_ROOT
42
43%files
44%defattr(644,root,root,755)
45%doc docs/{CHANGELOG,CREDIT,HACKING,INSTALL,LICENSE,TODO}
46%{_mandir}/man1/*
47%attr(755,root,root) %{_bindir}/*
48
49%changelog
This page took 0.074681 seconds and 4 git commands to generate.