summaryrefslogtreecommitdiffstats
path: root/misc/portecle/portecle.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'misc/portecle/portecle.SlackBuild')
-rw-r--r--misc/portecle/portecle.SlackBuild16
1 files changed, 13 insertions, 3 deletions
diff --git a/misc/portecle/portecle.SlackBuild b/misc/portecle/portecle.SlackBuild
index 068000a166..4c03bb31f9 100644
--- a/misc/portecle/portecle.SlackBuild
+++ b/misc/portecle/portecle.SlackBuild
@@ -1,17 +1,27 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for portecle
# Petr Kletecka petr@kle.cz <2018>
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=portecle
VERSION=${VERSION:-1.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
ARCH=noarch
-CWD=$(pwd)
+# 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}
@@ -53,4 +63,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
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