blob: 31c762d8e007b045375a9106244997a493ec8b2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
Summary: Scrub and NAT networking traces
Name: @PACKAGE_NAME@
Version: @PACKAGE_VERSION@
Release: @RELEASE@
License: GPLv2
Group: System Environment
Packager: yuri@isi.edu
BuildRequires: make gcc libpcap-devel openssl-devel
Requires: libpcap openssl
Source: dag_scrubber-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Url: https://ant.isi.edu/software/dag_scrubber
%description
Dag Scrubber is a tool for scrubbing packets of user data and optionally
doing IP address anonymization. It supports both pcap and ERF format
("dag", giving the legacy name).
%prep
%setup -q
%build
%configure --prefix=/usr
%{__make}
%install
%{__rm} -rf %{buildroot}
make install DESTDIR=%{buildroot} INSTALLDIRS=vendor
%clean
rm -rf %{buildroot}
%files
%defattr(-, root, root, 0755)
%{_bindir}/dag_scrubber
|