diff options
Diffstat (limited to 'development/numpy-legacy3/numpy-legacy3.SlackBuild')
-rw-r--r-- | development/numpy-legacy3/numpy-legacy3.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/numpy-legacy3/numpy-legacy3.SlackBuild b/development/numpy-legacy3/numpy-legacy3.SlackBuild index 8cc3c56c29df..25c32bde2190 100644 --- a/development/numpy-legacy3/numpy-legacy3.SlackBuild +++ b/development/numpy-legacy3/numpy-legacy3.SlackBuild @@ -49,6 +49,7 @@ PRGNAM="numpy-legacy3" 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 @@ -74,6 +75,14 @@ else LIBDIRSUFFIX="" fi +# 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} OUTPUT=${OUTPUT:-/tmp} @@ -162,4 +171,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 |