mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-09 21:37:15 +08:00
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Maintainer: UtG <utg.chakra.linux[at]gmail[dot]com>
|
|
# Contributor Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
# Contributor: Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=aria2
|
|
pkgver=1.18.10
|
|
pkgrel=1
|
|
pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink.'
|
|
arch=('x86_64')
|
|
url='http://aria2.sourceforge.net/'
|
|
license=('GPL3')
|
|
depends=('ca-certificates' 'c-ares' 'gnutls' 'libxml2' 'sqlite3')
|
|
checkdepends=('cppunit')
|
|
categories=('network')
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('c8a7bf111eb2c80251c47ee1fa9e174a530ae1dbd7c48c08c9c6b319bcf427d3')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
|
|
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
# add bash completion (aria2 automatically installs to a temporary target directory)
|
|
install -d "${pkgdir}/usr/share/bash-completion/completions"
|
|
install -m644 "${pkgdir}/usr/share/doc/aria2/bash_completion/aria2c" \
|
|
"${pkgdir}/usr/share/bash-completion/completions"
|
|
rm -rf "${pkgdir}/usr/share/doc/aria2/bash_completion"
|
|
}
|