contrib/aria2/Pkgfile

23 lines
513 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
2018-09-02 18:43:04 +10:00
# Depends on: c-ares gnutls libxml2
2014-07-08 17:08:32 +10:00
name=aria2
2021-08-22 17:37:02 +02:00
version=1.36.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
}