diff options
Diffstat (limited to 'system/apache-activemq/apache-activemq.SlackBuild')
-rw-r--r-- | system/apache-activemq/apache-activemq.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/apache-activemq/apache-activemq.SlackBuild b/system/apache-activemq/apache-activemq.SlackBuild index 59a767db442c..014ba0988f4f 100644 --- a/system/apache-activemq/apache-activemq.SlackBuild +++ b/system/apache-activemq/apache-activemq.SlackBuild @@ -28,6 +28,7 @@ PRGNAM=apache-activemq VERSION=${VERSION:-5.14.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} ACTIVEMQ_USER=${ACTIVEMQ_USER:-activemq} ACTIVEMQ_UID=${ACTIVEMQ_UID:-253} @@ -37,6 +38,14 @@ ACTIVEMQ_GID=${ACTIVEMQ_GID:-253} # i486 or x86_64 only ARCH=${ARCH:-i486} +# 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} @@ -126,4 +135,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 |