diff options
Diffstat (limited to 'network/firehol/firehol.SlackBuild')
-rw-r--r-- | network/firehol/firehol.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/firehol/firehol.SlackBuild b/network/firehol/firehol.SlackBuild index a64178ce918f5..68e74d4c2b000 100644 --- a/network/firehol/firehol.SlackBuild +++ b/network/firehol/firehol.SlackBuild @@ -29,6 +29,15 @@ VERSION=${VERSION:-1.296} ARCH=noarch BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +# 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 @@ -87,5 +96,5 @@ cat $CWD/rc.firehol > $PKG/etc/rc.d/rc.firehol.new # create the package 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 |