blob: 0d59cea57fe03bfd102f659612fe229c5b328980 (
plain)
1 # Description: Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink.
2 # URL: http://aria2.sourceforge.net/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Younes Hafri ycrux at club dash internet dot fr
5 # Depends on: c-ares gnutls libgmp libxml2
6
7 name=aria2
8 version=1.25.0
9 release=1
10 source=(https://github.com/aria2/aria2/releases/download/release-$version/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --disable-nls
18
19 make
20 make prefix=$PKG/usr install
21
22 rm -r $PKG/usr/share/doc $PKG/usr/share/man/{ru,pt}
23 }
|