From 10c73c5c84aa4733d682e44a85ce4fa09f64068f Mon Sep 17 00:00:00 2001 From: Neil McKee Date: Mon, 5 Oct 2015 22:20:26 -0700 Subject: [PATCH] Added missing sflowtool.spec file to git repo. --- sflowtool.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 sflowtool.spec diff --git a/sflowtool.spec b/sflowtool.spec new file mode 100755 index 0000000..7a29376 --- /dev/null +++ b/sflowtool.spec @@ -0,0 +1,44 @@ +Summary: tool to ascii-print or forward sFlow datagrams +Name: sflowtool +Version: 3.37 +Release: 1%{?dist} +License: http://www.inmon.com/technology/sflowlicense.txt +Group: Productivity/Networking/Diagnostic +URL: http://inmon.com/technology/sflowTools.php +Source: http://inmon.com/bin/sflowtool-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +The sFlow toolkit provides command line utilities and scripts for analyzing +sFlow data. sflowtool interfaces to utilities such as tcpdump, Wireshark and Snort +for detailed packet tracing and analysis, NetFlow compatible collectors for IP +flow accounting, and provides text based output that can be used in scripts to +provide customized analysis and reporting and for integrating with other tools +such as Graphite or rrdtool. + +%prep + +%setup -q -n %{name}-%{version} + +%build +%configure \ + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --infodir=%{_infodir} \ + --mandir=%{_mandir} +make + +%install +make DESTDIR=%{buildroot} install + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root) +/usr/bin/sflowtool +%doc AUTHORS INSTALL NEWS ChangeLog README + +%changelog +* Mon Jun 4 2012 Neil McKee > 3.26 +Initial spec to build sflowtool RPM