# Set default version/arch/build. You can override these settings
# in the SlackBuild scripts for each package (koffice, for example,
# usually has a different version number), or by setting your own
# environment variables.
if [ -z $VERSION ]; then
export VERSION=3.5.4
fi
if [ -z $ARCH ]; then
export ARCH=i486
fi
if [ -z $BUILD ]; then
export BUILD=1
fi
# Target arch (this should be set to i486 for any 32-bit x86, unless
# you want problems finding your compiler...):
if [ -z $TARGET ]; then
export TARGET=i486
fi
echo Second list
echo ARCH=$ARCH
echo VERSION=$VERSION
echo BUILD=$BUILD
echo TARGET=$TARGET
# Use this as CFLAGS and CXXFLAGS:
if [ -z "$CPUOPT" ]; then
if [ "$ARCH" = "i386" ]; then
export CPUOPT="-O2 -march=i386 -mcpu=i686"
echo If I am here, it means ARCH was i386
elif [ "$ARCH" = "i486" ]; then
export CPUOPT="-O2 -march=i486 -mtune=i686"
echo If I am here, it means ARCH was i486
elif [ "$ARCH" = "s390x" ]; then
export CPUOPT="-O2"
echo If I am here, it means ARCH was s390x
elif [ "$ARCH" = "x86_64" ]; then
export CPUOPT="-O2"
echo If I am here, it means ARCH was x86_64
fi
fi
# Number of jobs to compile at once:
if [ -z "$NUMJOBS" ]; then
export NUMJOBS=-j3
fi