summaryrefslogtreecommitdiffstats
path: root/system/pwsafe
diff options
context:
space:
mode:
Diffstat (limited to 'system/pwsafe')
-rw-r--r--system/pwsafe/README7
-rw-r--r--system/pwsafe/pwsafe.SlackBuild16
2 files changed, 17 insertions, 6 deletions
diff --git a/system/pwsafe/README b/system/pwsafe/README
index 4ca9f59485..0a25ed6cee 100644
--- a/system/pwsafe/README
+++ b/system/pwsafe/README
@@ -1,3 +1,4 @@
-pwsafe is a unix commandline program that manages encrypted password databases.
-It can be used as a pure command-line operation or can interact with X11
-selection & clipboard. It is compatible with CounterPane's PasswordSafe.
+pwsafe is a unix commandline program that manages encrypted password
+databases. It can be used as a pure command-line operation or
+can interact with X11 selection & clipboard. It is compatible with
+CounterPane's PasswordSafe.
diff --git a/system/pwsafe/pwsafe.SlackBuild b/system/pwsafe/pwsafe.SlackBuild
index ed9a528fd5..d8fc14e0fc 100644
--- a/system/pwsafe/pwsafe.SlackBuild
+++ b/system/pwsafe/pwsafe.SlackBuild
@@ -1,13 +1,16 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for pwsafe
# Written by Tom Fitzhenry <tom@fitzhenry.name> 2007/08/22
# Modified by Robby Workman 20071025
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=pwsafe
VERSION=${VERSION:-0.2.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -17,7 +20,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}
@@ -82,4 +92,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