diff options
Diffstat (limited to 'system/zookeeper/zookeeper.SlackBuild')
-rw-r--r-- | system/zookeeper/zookeeper.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/zookeeper/zookeeper.SlackBuild b/system/zookeeper/zookeeper.SlackBuild index 1dcf551db3a4..e536591a2329 100644 --- a/system/zookeeper/zookeeper.SlackBuild +++ b/system/zookeeper/zookeeper.SlackBuild @@ -28,6 +28,7 @@ PRGNAM=zookeeper VERSION=${VERSION:-3.4.10} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} ZOOKEEPER_USER=${ZOOKEEPER_USER:-zookeeper} ZOOKEEPER_UID=${ZOOKEEPER_UID:-322} @@ -60,6 +61,14 @@ elif ! grep -q "^$ZOOKEEPER_GROUP:" /etc/group; then bailout 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=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -138,4 +147,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 |