summaryrefslogtreecommitdiffstats
path: root/source/kdei/calligra-l10n/calligra-l10n.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'source/kdei/calligra-l10n/calligra-l10n.SlackBuild')
-rwxr-xr-xsource/kdei/calligra-l10n/calligra-l10n.SlackBuild23
1 files changed, 19 insertions, 4 deletions
diff --git a/source/kdei/calligra-l10n/calligra-l10n.SlackBuild b/source/kdei/calligra-l10n/calligra-l10n.SlackBuild
index 7f5990d9d..3ddba9469 100755
--- a/source/kdei/calligra-l10n/calligra-l10n.SlackBuild
+++ b/source/kdei/calligra-l10n/calligra-l10n.SlackBuild
@@ -1,8 +1,8 @@
-#!/bin/sh
+#!/bin/bash
# Copyright 2008 Robby Workman Northport, AL, USA
# Copyright 2012, 2013 Eric Hameleers, Eindhoven, NL
-# Copyright 2012, 2013, 2014, 2015 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2012, 2013, 2014, 2015, 2018 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -30,6 +30,8 @@
# default is to create an up-to-date ./languages list and build all the
# language packs.
+cd $(dirname $0) ; CWD=$(pwd)
+
if [ ! -r ./languages ]; then
for file in calligra-l10n*.xz ; do
echo $file | cut -f 3 -d - >> ./languages
@@ -61,8 +63,7 @@ fi
# Set the config option variables if they are not already set:
[ -r ../KDE.options ] && . ../KDE.options
-CWD=$(pwd)
-TMP=${TMP:-/tmp/kde-build}
+TMP=${TMP:-/tmp/kde_build}
make_language_pack() {
rm -rf $PKG
@@ -104,6 +105,13 @@ cd $PKG
if [ -z $PKGLANG ]; then
for PKGLANG in $(cat languages) ; do
PKGNAM=calligra-l10n-$PKGLANG
+ # 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 "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
+ continue
+ fi
PKG=$TMP/package-calligra-l10n-$PKGLANG
# The global options may be overridden here (if needed):
[ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG
@@ -111,6 +119,13 @@ if [ -z $PKGLANG ]; then
done
else
PKGNAM=calligra-l10n-$PKGLANG
+ # 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 "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
+ exit 0
+ fi
PKG=$TMP/package-calligra-l10n-$PKGLANG
# The global options may be overridden here (if needed):
[ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG