1
0
forked from ports/contrib
contrib/aria2/Pkgfile

24 lines
580 B
Plaintext
Raw Normal View History

2016-05-19 01:14:46 +10:00
# Description: Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink.
2016-10-18 18:33:17 +11:00
# URL: https://aria2.github.io/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
2014-07-08 17:08:32 +10:00
# Packager: Younes Hafri ycrux at club dash internet dot fr
# Depends on: c-ares gnutls libgmp libxml2
name=aria2
2017-08-06 15:39:20 +10:00
version=1.32.0
2016-05-19 01:14:46 +10:00
release=1
source=(https://github.com/aria2/aria2/releases/download/release-$version/$name-$version.tar.xz)
2014-07-08 17:08:32 +10:00
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
make
make prefix=$PKG/usr install
2016-05-19 01:14:46 +10:00
rm -r $PKG/usr/share/doc $PKG/usr/share/man/{ru,pt}
2014-07-08 17:08:32 +10:00
}