diff options
Diffstat (limited to 'development/rmac/rmac.SlackBuild')
-rw-r--r-- | development/rmac/rmac.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/rmac/rmac.SlackBuild b/development/rmac/rmac.SlackBuild index 9c1848d4f881..b8370ce1c784 100644 --- a/development/rmac/rmac.SlackBuild +++ b/development/rmac/rmac.SlackBuild @@ -17,6 +17,7 @@ PRGNAM=rmac VERSION=${VERSION:-1.13.5_20180603} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -26,6 +27,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} @@ -94,4 +103,4 @@ sed "s,@gitrev@,$( cat $PRGNAM.gitrev )," \ > $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 |