12345678910111213141516171819 |
- # Description: Lightweight multi-protocol & multi-source command-line download utility.
- # URL: https://aria2.github.io/
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on: gnutls libssh2 c-ares libxml2
- name=aria2
- version=1.37.0
- release=2
- source=(https://github.com/$name/$name/releases/download/release-$version/$name-$version.tar.xz)
- build() {
- cd $name-$version
- ./configure --prefix=/usr
- make
- make DESTDIR=$PKG install
- rm -rf $PKG/{usr/share/doc/aria2,usr/share/locale/,usr/share/man/pt/,usr/share/man/ru/}
- }
|