diff options
Diffstat (limited to 'system/grub4dos/grub4dos.SlackBuild')
-rw-r--r-- | system/grub4dos/grub4dos.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/grub4dos/grub4dos.SlackBuild b/system/grub4dos/grub4dos.SlackBuild index 98d144b862e2..d0a323e78e6d 100644 --- a/system/grub4dos/grub4dos.SlackBuild +++ b/system/grub4dos/grub4dos.SlackBuild @@ -10,6 +10,7 @@ PRGNAM=grub4dos VERSION=${VERSION:-0.4.5b_2011_02_20} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} TARVERSION=$(echo $VERSION | tr '_' '-') SRCVERSION=$(echo $VERSION | cut -f1 -d_ ) @@ -17,6 +18,14 @@ SRCVERSION=$(echo $VERSION | cut -f1 -d_ ) # Now using the precompiled binary since Grub4dos doesn't build on other archs anyway ARCH="i386" +# 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} @@ -72,4 +81,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 |