]> git.pld-linux.org Git - packages/axel.git/blob - axel.spec
- initial pld release
[packages/axel.git] / axel.spec
1 Summary:        IP Flow Meter is a bandwidth analysis tool
2 Name:           axel
3 Version:        0.91
4 Release:        1
5 License:        GPL
6 Group:          Networking/Utilities
7 Group(de):      Netzwerkwesen/Werkzeuge
8 Group(pl):      Sieciowe/Narzêdzia
9 Source0:        http://www.lintux.cx/downloads/%{name}-%{version}.tar.gz
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 This program downloads a file from a FTP/HTTP through multiple
14 connections, managed by one single thread, storing all the data to one
15 file. This is because I think it's more efficient.
16
17 %prep
18 %setup  -q 
19
20 %build
21
22 %{__make}
23
24 gzip -9nf TODO CHANGES README
25
26 %install
27
28 rm -rf $RPM_BUILD_ROOT
29
30 install -d $RPM_BUILD_ROOT%{_bindir}
31 install -d $RPM_BUILD_ROOT%{_mandir}/man1/
32 install -d $RPM_BUILD_ROOT%{_sysconfdir}
33
34 install axel    $RPM_BUILD_ROOT%{_bindir}/
35 install axel.1  $RPM_BUILD_ROOT%{_mandir}/man1/
36 install axelrc.example  $RPM_BUILD_ROOT%{_sysconfdir}/axelrc
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %files
42 %defattr(644,root,root,755)
43 %doc *.gz
44 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*
45 %attr(755,root,root) %{_bindir}/*
46 %{_mandir}/*
This page took 0.067347 seconds and 3 git commands to generate.