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