forked from mattthias/slurm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slurm.spec
56 lines (45 loc) · 1.31 KB
/
slurm.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
45
46
47
48
49
50
51
52
53
54
55
56
%define name slurm
%define version 0.2.3
%define release 1
Summary: A realtime network traffic statistic tool
Name: %{name}
Version: %{version}
Release: %{release}
Source0: %{name}-%{version}.tar.gz
License: GPL
Group: Applications/Multimedia
BuildRoot: %{_tmppath}/%{name}-buildroot
Requires: ncurses
BuildRequires: ncurses-devel
Packager: Ralf Ertzinger <ertzinger@skytale.net>
URL: http://www.wormulon.net/projects/slurm
%description
slurm started as a pppstatus port to FreeBSD. Features:
* realtime traffic statistics divided into incoming and outgoing
* optional combined view
* can monitor any kind of network interface (testers welcome!)
* shows detailed statistics about the interface.
* contact me if you need anything else.
%prep
%setup
%build
%configure
%{__make}
%install
[ $RPM_BUILD_ROOT != "/" ] && rm -rf $RPM_BUILD_ROOT
%{__mkdir} -p $RPM_BUILD_ROOT
%{__install} -d %{buildroot}/%{_bindir}
%{__install} -d %{buildroot}/%{_mandir}/man1
%{__install} slurm %{buildroot}/%{_bindir}
%{__install} slurm.1 %{buildroot}/%{_mandir}/man1
%clean
[ $RPM_BUILD_ROOT != "/" ] && rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc Changelog README KEYS TODO THANKS COPYRIGHT
%{_bindir}/slurm
%{_mandir}/man1/slurm.1.gz
%changelog
* Thu May 15 2003 Ralf Ertzinger <ertzinger@skytale.net>
- Initial RPM build
# end of file