mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-14 05:04:17 +02:00
36 lines
899 B
Text
36 lines
899 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=axel
|
|
pkgver=2.17.14
|
|
pkgrel=0
|
|
pkgdesc="A multiple-connection concurrent downloader"
|
|
url="https://github.com/axel-download-accelerator/axel"
|
|
arch="all"
|
|
options="!check" # has no checks
|
|
license="GPL-2.0-or-later WITH OpenSSL-Exception"
|
|
makedepends="openssl-dev>3"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/axel-download-accelerator/axel/releases/download/v$pkgver/axel-$pkgver.tar.xz"
|
|
|
|
# secfixes:
|
|
# 2.17.8-r0:
|
|
# - CVE-2020-13614
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-nls
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
73ea499f581d9411197269fc96d7eeed83dcdb7470aba2ef93db0a1032689bfb66e03a194e9ae5191477ca86cc772d204c6672233009cf210b9ebb3ae29bc9c0 axel-2.17.14.tar.xz
|
|
"
|