contrib/aria2/Pkgfile

23 lines
513 B
Plaintext
Raw Normal View History

2016-05-18 17:14:46 +02:00
# Description: Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink.
2016-10-18 09:33:17 +02:00
# URL: https://aria2.github.io/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2018-09-02 10:43:04 +02:00
# Depends on: c-ares gnutls libxml2
2014-07-08 09:08:32 +02:00
name=aria2
2021-08-22 17:37:02 +02:00
version=1.36.0
2022-01-13 15:12:06 +01:00
release=2
2016-05-18 17:14:46 +02:00
source=(https://github.com/aria2/aria2/releases/download/release-$version/$name-$version.tar.xz)
2014-07-08 09:08:32 +02:00
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
make
make prefix=$PKG/usr install
2016-05-18 17:14:46 +02:00
rm -r $PKG/usr/share/doc $PKG/usr/share/man/{ru,pt}
2014-07-08 09:08:32 +02:00
}