network/axel: Updated for version 2.2

This commit is contained in:
Antonio Hernández Blas 2010-05-13 00:35:44 +02:00 committed by David Somero
parent 70bf258779
commit 1890b771a3
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,3 @@
Axel - Axel Download Accelerator
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

View file

@ -34,10 +34,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e
@ -57,6 +60,7 @@ find . \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--etcdir=/etc \
--mandir=/usr/man \
--i18n=1 \
@ -87,4 +91,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -2,7 +2,9 @@ PRGNAM="axel"
VERSION="2.2"
HOMEPAGE="http://axel.alioth.debian.org"
DOWNLOAD="http://alioth.debian.org/frs/download.php/2658/axel-2.2.tar.bz2"
DOWNLOAD_x86_64=""
MD5SUM="714f6056fb2202e78125bdfb6e855681"
MD5SUM_x86_64=""
MAINTAINER="Antonio Hernández Blas"
EMAIL="hba.nihilismus@gmail.com"
APPROVED="dsomero"