contrib/aria2/Pkgfile

23 lines
496 B
Plaintext
Raw Normal View History

2023-08-18 21:28:02 +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/
2023-08-18 21:28:02 +02:00
# Maintainer: unmaintained
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() {
2023-08-18 21:28:02 +02:00
cd $name-$version
2014-07-08 09:08:32 +02:00
2023-08-18 21:28:02 +02:00
./configure \
--prefix=/usr \
--disable-nls
2014-07-08 09:08:32 +02:00
2023-08-18 21:28:02 +02:00
make
make prefix=$PKG/usr install
2014-07-08 09:08:32 +02:00
2023-08-18 21:28:02 +02:00
rm -r $PKG/usr/share/doc $PKG/usr/share/man/{ru,pt}
2014-07-08 09:08:32 +02:00
}