From 8542d919ddbd83b36181c5c4412c46c989065f52 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 07:39:42 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.7.4-1mamba;Tue Jul 29 2014] --- README.md | 2 ++ nload.spec | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 nload.spec diff --git a/README.md b/README.md index 5dd1e20..24fd5a8 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # nload +nload is a console application which monitors network traffic and bandwidth usage in real time. It visualizes the in- and outgoing traffic using two graphs and provides additional info like total amount of transfered data and min/max network usage. + diff --git a/nload.spec b/nload.spec new file mode 100644 index 0000000..0da8ef9 --- /dev/null +++ b/nload.spec @@ -0,0 +1,47 @@ +Name: nload +Version: 0.7.4 +Release: 1mamba +Summary: A console application which monitors network traffic and bandwidth usage in real time +Group: Applications/Networking +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.roland-riegel.de/nload/ +Source: https://downloads.sourceforge.net/project/nload/nload/%{version}/nload-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libncurses-devel +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +nload is a console application which monitors network traffic and bandwidth usage in real time. It visualizes the in- and outgoing traffic using two graphs and provides additional info like total amount of transfered data and min/max network usage. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/nload +%{_mandir}/man1/nload.1* +%doc AUTHORS COPYING + +%changelog +* Tue Jul 29 2014 Silvan Calarco 0.7.4-1mamba +- package created using the webbuild interface