diff options
Diffstat (limited to 'libraries/flashplugin-lahf-fix/flashplugin-lahf-fix.SlackBuild')
-rw-r--r-- | libraries/flashplugin-lahf-fix/flashplugin-lahf-fix.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/flashplugin-lahf-fix/flashplugin-lahf-fix.SlackBuild b/libraries/flashplugin-lahf-fix/flashplugin-lahf-fix.SlackBuild index 96b3eb487edcb..1083923028a8b 100644 --- a/libraries/flashplugin-lahf-fix/flashplugin-lahf-fix.SlackBuild +++ b/libraries/flashplugin-lahf-fix/flashplugin-lahf-fix.SlackBuild @@ -9,6 +9,7 @@ PRGNAM=flashplugin-lahf-fix VERSION=${VERSION:-0.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} if [ -z "${ARCH}" ]; then ARCH="$(uname -m)" @@ -18,6 +19,14 @@ if [ "${ARCH}" != "x86_64" ] ; then exit 1 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} @@ -38,4 +47,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 |