mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
45 lines
953 B
Bash
45 lines
953 B
Bash
SUMMARY="Light Unix download accelerator"
|
|
DESCRIPTION="
|
|
Axel tries to accelerate HTTP/FTP downloading process by using multiple \
|
|
connections for one file. It can use multiple mirrors for a download. Axel has \
|
|
no dependencies and is lightweight, so it might be useful as a wget clone on \
|
|
byte-critical systems."
|
|
HOMEPAGE="http://axel.alioth.debian.org/"
|
|
COPYRIGHT="2001 Wilmer van der Gaast."
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="http://pkgs.fedoraproject.org/repo/pkgs/axel/axel-2.4.tar.gz/a2a762fce0c96781965c8f9786a3d09d/axel-2.4.tar.gz"
|
|
CHECKSUM_SHA256="359a57ab4e354bcb6075430d977c59d33eb3e2f1415a811948fa8ae657ca8036"
|
|
PATCHES="
|
|
axel-2.4.patch
|
|
"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
axel = $portVersion
|
|
cmd:axel = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./configure --i18n=0
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install DESTDIR="${DESTDIR}"
|
|
}
|