ap/EMBOSS: Cleaned up again.

slackware-14.2
Damien Goutte-Gattat 14 years ago
parent 55b0858548
commit e0163db016

@ -31,11 +31,11 @@ VERSION=${VERSION:-6.0.1}
ARCHIVE=${ARCHIVE:-$NAMESRC-$VERSION.tar.gz}
WGET=${WGET:-ftp://emboss.open-bio.org/pub/EMBOSS/$ARCHIVE}
# Built package infos
# Build infos
NAMETGZ=${NAMETGZ:-EMBOSS}
BUILD=${BUILD:-2GGD}
ARCH=${ARCH:-i486}
TARGET=${TARGET:-i486}
JOBS=${JOBS:-1}
# Directories
TMP=${TMP:-/tmp}
@ -47,7 +47,7 @@ CWD=$(pwd)
set -e
# Sanity checks
if [ "$(id -u)" = "0" ]; then
if [ $UID -eq 0 ]; then
echo "You should NOT run this script as ROOT!"
exit 1
fi
@ -91,7 +91,7 @@ CXXFLAGS=$CPUOPT \
--disable-static \
--with-java=$JDK/include \
--with-javaos=$JDK/include/linux
make -j 3
make -j $JOBS
make install DESTDIR=$PKG
# Tweak JEmboss launch files

Loading…
Cancel
Save