diff options
Diffstat (limited to 'graphics/PureRef')
-rw-r--r-- | graphics/PureRef/PureRef.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/graphics/PureRef/PureRef.SlackBuild b/graphics/PureRef/PureRef.SlackBuild index 10a0e15166..45d8c1b4b8 100644 --- a/graphics/PureRef/PureRef.SlackBuild +++ b/graphics/PureRef/PureRef.SlackBuild @@ -28,6 +28,7 @@ PRGNAM=PureRef VERSION=${VERSION:-1.9.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} if [ "${ARCH:=$(uname -m)}" != "x86_64" ]; then echo "$ARCH is not supported." @@ -36,6 +37,14 @@ fi set -e +# 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=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -63,4 +72,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh 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 |