mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/libisofs: Updated for version 0.6.32.
This commit is contained in:
parent
ceeb9c3849
commit
e9bc0649c8
2 changed files with 18 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for libisofs
|
||||
|
||||
# Copyright 2008-2010 Robby Workman, Northport, Alabama, USA
|
||||
# Copyright 2008,2009,2010 Robby Workman, Northport, Alabama, USA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,11 +23,20 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=libisofs
|
||||
VERSION=0.6.28
|
||||
ARCH=${ARCH:-i486}
|
||||
VERSION=0.6.32
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="libisofs"
|
||||
VERSION="0.6.28"
|
||||
VERSION="0.6.32"
|
||||
HOMEPAGE="http://libburnia-project.org/wiki/Libisofs"
|
||||
DOWNLOAD="http://files.libburnia-project.org/releases/libisofs-0.6.28.tar.gz"
|
||||
MD5SUM="24bb0b876d99f42e8578d68ecb8e8ea9"
|
||||
DOWNLOAD="http://files.libburnia-project.org/releases/libisofs-0.6.32.tar.gz"
|
||||
MD5SUM="2b02cb446ade385c04e58a64cd0e4c23"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Robby Workman"
|
||||
|
|
Loading…
Reference in a new issue