summaryrefslogtreecommitdiffstats
path: root/development/numpy-legacy/numpy-legacy.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'development/numpy-legacy/numpy-legacy.SlackBuild')
-rw-r--r--development/numpy-legacy/numpy-legacy.SlackBuild18
1 files changed, 14 insertions, 4 deletions
diff --git a/development/numpy-legacy/numpy-legacy.SlackBuild b/development/numpy-legacy/numpy-legacy.SlackBuild
index 82a1687f81..a96eb39643 100644
--- a/development/numpy-legacy/numpy-legacy.SlackBuild
+++ b/development/numpy-legacy/numpy-legacy.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for the latest version of NumPy to include
# the compatibility layer with numeric and numarray
@@ -42,10 +42,13 @@
# Added the possibility to force numpy to link to different kinds of the
# ATLAS library (S. Udrea)
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM="numpy-legacy"
VERSION=${VERSION:-1.8.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
TARBALL_NAME=numpy # This is actually what we are going to install
@@ -71,9 +74,16 @@ else
LIBDIRSUFFIX=""
fi
-CWD=$(pwd)
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
TMP=${TMP:-/tmp/SBo}
-PKG=${PKG:-$TMP/package-$PRGNAM}
+PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -e
@@ -160,4 +170,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.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE