diff options
author | 2021-07-03 10:38:53 +0200 | |
---|---|---|
committer | 2021-07-03 12:16:56 +0200 | |
commit | ae9928fc788ce46e4e9664f2e037e8cc2eb996a0 (patch) | |
tree | fd919e0b3cc1850c710bf284ce1c97d4919a3555 /perl-template.SlackBuild | |
parent | c6c65e5629bd27c2255ae5070dd57842147a267e (diff) | |
download | templates-ae9928fc788ce46e4e9664f2e037e8cc2eb996a0.tar.gz templates-ae9928fc788ce46e4e9664f2e037e8cc2eb996a0.tar.xz |
*.SlackBuild: Support $PRINT_PACKAGE_NAME env var
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Diffstat (limited to 'perl-template.SlackBuild')
-rw-r--r-- | perl-template.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/perl-template.SlackBuild b/perl-template.SlackBuild index cb20ee0..88aa177 100644 --- a/perl-template.SlackBuild +++ b/perl-template.SlackBuild @@ -54,6 +54,7 @@ PRGNAM=perl-appname # replace "appname" with name of program VERSION=${VERSION:-1.4.1} # replace with version of program BUILD=${BUILD:-1} TAG=${TAG:-_SBo} # the "_SBo" is required +PKGTYPE=${PKGTYPE:-tgz} SRCNAM="$(printf $PRGNAM | cut -d- -f2-)" @@ -67,6 +68,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} # For consistency's sake, use this PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp @@ -156,4 +165,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc # Make the package; be sure to leave it in $OUTPUT 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 |