diff options
Diffstat (limited to 'audio/match-vamp-plugin/match-vamp-plugin.SlackBuild')
-rw-r--r-- | audio/match-vamp-plugin/match-vamp-plugin.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/audio/match-vamp-plugin/match-vamp-plugin.SlackBuild b/audio/match-vamp-plugin/match-vamp-plugin.SlackBuild index 2c075f7bfc83..9ad1a7a1f487 100644 --- a/audio/match-vamp-plugin/match-vamp-plugin.SlackBuild +++ b/audio/match-vamp-plugin/match-vamp-plugin.SlackBuild @@ -17,6 +17,7 @@ PRGNAM=match-vamp-plugin VERSION=${VERSION:-1.0} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} TARNAME=$( echo $PRGNAM | cut -d- -f1,2 ) @@ -28,6 +29,14 @@ if [ -z "$ARCH" ]; then esac 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} @@ -84,4 +93,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 |