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