forked from phaag/nfdump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnfdump.spec
44 lines (36 loc) · 1009 Bytes
/
nfdump.spec
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
37
38
39
40
41
42
43
44
Name: nfdump
Summary: A set of command-line tools to collect and process netflow data
Version: 1.6.20
Release: 1
License: BSD
Group: Applications/System
Source: %{name}-%{version}.tar.gz
BuildRequires: flex
BuildRoot: %{_tmppath}/%{name}-root
Packager: Colin Bloch <[email protected]>
Prefix: /usr
Url: https://github.com/phaag/nfdump
%description
The nfdump tools collect and process netflow data on the command line.
They are part of the NFSEN project, which is explained more detailed at
http://www.terena.nl/tech/task-forces/tf-csirt/meeting12/nfsen-Haag.pdf
%prep
rm -rf $RPM_BUILD_ROOT
%setup -q
%build
./autogen.sh
./configure --prefix=$RPM_BUILD_ROOT/%{prefix} --libdir=$RPM_BUILD_ROOT/%{_libdir}
make
%install
make install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc INSTALL README.md ToDo BSD-license.txt AUTHORS ChangeLog
%{prefix}/bin/*
%{prefix}/share/man/man1/*
%{_libdir}/*
%changelog
* Thu Jan 03 2019 Richard REY <Rexy>
- Version 1.6.20 (used in ALCASAR 3.3.3)