contrib/aria2/Pkgfile

24 lines
585 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.
2014-07-08 09:08:32 +02:00
# URL: http://aria2.sourceforge.net/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2014-07-08 09:08:32 +02:00
# Packager: Younes Hafri ycrux at club dash internet dot fr
# Depends on: c-ares gnutls libgmp libxml2
name=aria2
2016-09-25 11:52:48 +02:00
version=1.27.1
2016-05-18 17:14:46 +02:00
release=1
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
}