]> git.pld-linux.org Git - packages/axel.git/blob - axel.spec
- updated to 1.0a
[packages/axel.git] / axel.spec
1 Summary:        An light Linux download accelerator     
2 Summary(pl):    Niewielki dopalacz ¶ci±gania plików
3 Name:           axel
4 Version:        1.0a
5 Release:        1
6 License:        GPL
7 Group:          Networking/Utilities
8 Group(de):      Netzwerkwesen/Werkzeuge
9 Group(es):      Red/Utilitarios
10 Group(pl):      Sieciowe/Narzêdzia
11 Group(pt_BR):   Rede/Utilitários
12 Source0:        http://www.lintux.cx/downloads/%{name}-%{version}.tar.gz
13 Patch0:         %{name}-Makefile.patch
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 This program downloads a file from a FTP/HTTP through multiple
18 connections, managed by one single thread, storing all the data to one
19 file. This is because I think it's more efficient.
20
21 %description -l pl
22 Ten program ¶ci±ga pliki przez FTP/HTTP korzystaj±c w wielu
23 równoczesnych po³±czeñ, zarz±dzanych przez pojedynczy w±tek, zapisuj±c
24 wszystkie dane w jednym pliku. Dlatego powinien byæ bardzo efektywny.
25
26 %prep
27 %setup  -q 
28
29 %build
30 # it doesn't use autoconf
31 ./configure \
32         --prefix=%{_prefix} \
33         --bindir=%{_bindir} \
34         --etcdir=%{_sysconfdir} \
35         --mandir=%{_mandir} \
36         --locale=%{_datadir}/locale \
37         --i18n=1
38
39 %{__make} CC=%{__cc} CFLAGS="%{rpmcflags}"
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43
44 install -d $RPM_BUILD_ROOT{%{_bindir},%{_sysconfdir},%{_mandir},%{_datadir}/locale}
45 %{__make} install DESTDIR=$RPM_BUILD_ROOT
46
47 %find_lang %{name}
48
49 gzip -9nf CHANGES README
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files -f %{name}.lang
55 %defattr(644,root,root,755)
56 %doc *.gz
57 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*
58 %attr(755,root,root) %{_bindir}/*
59 %{_mandir}/man1/*
This page took 0.080714 seconds and 4 git commands to generate.