Pkgfile 547 B

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