Updated axel, bakefile, and antiword recipes so that they now build again, recipes by GCI2013 student Dareus

This commit is contained in:
Scott McCreary
2013-11-29 03:03:49 +00:00
parent 570125de67
commit 7de6be4b0e
3 changed files with 117 additions and 31 deletions

View File

@@ -1,21 +1,47 @@
DESCRIPTION="axel - Light Unix download accelerator"
HOMEPAGE="http://axel.alioth.debian.org/"
SRC_URI="http://alioth.debian.org/frs/download.php/3015/axel-2.4.tar.gz"
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/"
SRC_URI="https://alioth.debian.org/frs/download.php/file/3015/axel-2.4.tar.gz"
CHECKSUM_MD5="a2a762fce0c96781965c8f9786a3d09d"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
LICENSE="GNU GPL v2"
COPYRIGHT="2001 Wilmer van der Gaast."
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
axel = $portVersion
cmd:axel = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:make
"
PATCHES="
axel-2.4.patch
"
BUILD()
{
cd axel-2.4
./configure --prefix=`finddir B_COMMON_DIRECTORY` --i18n=0
./configure --i18n=0
make
}
INSTALL()
{
cd axel-2.4
make install DESTDIR="${DESTDIR}"
}
LICENSE="GNU GPL v2"
COPYRIGHT="2001 Wilmer van der Gaast."