]> git.pld-linux.org Git - packages/aria2.git/blob - aria2.spec
- init PLD spec
[packages/aria2.git] / aria2.spec
1 Summary:        Aria2 is a download utility with resuming and segmented downloading
2 Name:           aria2
3 Version:        0.10.1
4 Release:        0.1
5 License:        GPL
6 Group:          Applications
7 Source0:        http://dl.sourceforge.net/aria2/%{name}-%{version}.tar.bz2
8 # Source0-md5:  ee56d934d11c70e8d3b778658e5d7d9d
9 URL:            http://aria2.sourceforge.net/
10 BuildRequires:  gnutls-devel
11 BuildRequires:  libxml2-devel
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 Aria2 has segmented downloading engine in its core. It can download
16 one file from multiple URLs or multiple connections from one URL. This
17 results in very high speed downloading, very much faster than ordinary
18 browsers. It can also download BitTorrent files. We implemented this
19 engine in single-thread model. The architecture is very clean and easy
20 to extend. It also supports Metalink version 3.0.
21
22 %prep
23 %setup -q
24
25 %build
26 %configure
27 %{__make}
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31
32 %{__make} install \
33         DESTDIR=$RPM_BUILD_ROOT
34
35 %find_lang aria2c
36
37 %clean
38 rm -rf $RPM_BUILD_ROOT
39
40 %files -f aria2c.lang
41 %defattr(644,root,root,755)
42 %doc AUTHORS ChangeLog NEWS README TODO
43 %attr(755,root,root) %{_bindir}/aria2c
44 %{_mandir}/man1/*
This page took 0.038148 seconds and 4 git commands to generate.