system/aimage: Updated for version 3.2.4
This commit is contained in:
parent
0af2c75760
commit
a881d48be7
|
@ -6,4 +6,4 @@ formats can be compressed or uncompressed. aimage can optionally compress
|
|||
and calculate MD5 or SHA-1 hash residues while the data is being copied.
|
||||
It has intelligent error recovery, similar to what is in ddrescue.
|
||||
|
||||
aimage requires afflib, which is also available at at SlackBuilds.org.
|
||||
aimage requires afflib.
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=aimage
|
||||
VERSION=3.2.0
|
||||
VERSION=3.2.4
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -35,10 +35,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
|
||||
|
@ -56,6 +59,7 @@ CFLAGS="$SLKCFLAGS" \
|
|||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
@ -72,4 +76,4 @@ mkdir -p $PKG/install
|
|||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
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}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
PRGNAM="aimage"
|
||||
VERSION="3.2.0"
|
||||
VERSION="3.2.4"
|
||||
HOMEPAGE="http://www.afflib.org"
|
||||
DOWNLOAD="http://www.afflib.org/downloads/aimage-3.2.0.tar.gz"
|
||||
MD5SUM="58218cfc5cfcfdbabb216f1f8c0f9c39"
|
||||
DOWNLOAD="http://www.afflib.org/downloads/aimage-3.2.4.tar.gz"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM="bb6e4e91524612570a481b6470fe7cd1"
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Barry J. Grundy"
|
||||
EMAIL="bgrundy<at>linuxleo.com"
|
||||
APPROVED="rworkman"
|
||||
APPROVED="Erik Hanson"
|
||||
|
|
Loading…
Reference in New Issue