package created using the webbuild interface [release 0.7.4-1mamba;Tue Jul 29 2014]

This commit is contained in:
Silvan Calarco 2024-01-06 07:39:42 +01:00
parent f06ce16dde
commit 8542d919dd
2 changed files with 49 additions and 0 deletions

View File

@ -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.

47
nload.spec Normal file
View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 0.7.4-1mamba
- package created using the webbuild interface