1Summary        : A console application which monitors network traffic and bandwidth usage in real time
2Name           : @PACKAGE@
3Version        : @VERSION@
4Release        : 1
5Copyright      : GPL
6Url            : http://www.roland-riegel.de/nload/index_en.html
7Packager       : Helder Correia <helder.correia@netcabo.pt>
8Group          : Applications/System
9Source         : %{name}-%{version}.tar.gz
10BuildRoot      : %{_tmppath}/%{name}-%{version}-root
11Requires       : ncurses >= 5.0
12BuildRequires  : ncurses-devel >= 5.0
13
14
15%description
16%{name} is a console application which monitors network traffic and bandwidth
17usage in real time. It visualizes the in and outgoing traffic using two graphs
18and provides additional info like total amount of transfered data and min/max
19network usage.
20
21
22%prep
23%setup -q
24
25
26%build
27CFLAGS=${RPM_OPT_FLAGS} CXXFLAGS=${RPM_OPT_FLAGS} ./configure --prefix=%{_prefix} --mandir=%{_mandir}
28make
29
30
31%install
32rm -rf %{buildroot}
33make DESTDIR=%{buildroot} install
34
35
36%clean
37rm -rf %{buildroot}
38
39
40%files
41%defattr(-,root,root)
42%doc AUTHORS COPYING ChangeLog NEWS README
43%attr(0755,root,root) %{_bindir}/%{name}
44%{_mandir}/man1/%{name}.1.gz
45
46
47%changelog
48* Wed Aug 14 2002 Helder Correia <helder.correia@netcabo.pt>
49- Initial RPM release.
50