summaryrefslogtreecommitdiffstats
path: root/perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild')
-rw-r--r--perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild16
1 files changed, 13 insertions, 3 deletions
diff --git a/perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild b/perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild
index 732dc4c8c1..22bc4743c2 100644
--- a/perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild
+++ b/perl/perl-Text-Quoted/perl-Text-Quoted.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Copyright (c) 2013 Asaf Ohaion
# Copyright (c) 2017 Andreas Guldstrand
@@ -28,10 +28,13 @@
# Build script for perl-Text-Quoted
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=perl-Text-Quoted
VERSION=${VERSION:-2.10}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
SRCNAM=$( echo $PRGNAM | cut -d- -f2- )
@@ -43,7 +46,14 @@ if [ -z "$ARCH" ]; then
esac
fi
-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}
@@ -102,4 +112,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