summaryrefslogtreecommitdiffstats
path: root/multimedia/subtitleripper
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/subtitleripper')
-rw-r--r--multimedia/subtitleripper/README13
-rw-r--r--multimedia/subtitleripper/subtitleripper.SlackBuild16
2 files changed, 20 insertions, 9 deletions
diff --git a/multimedia/subtitleripper/README b/multimedia/subtitleripper/README
index 786c35ddfa..74da1774c6 100644
--- a/multimedia/subtitleripper/README
+++ b/multimedia/subtitleripper/README
@@ -1,11 +1,12 @@
DVD Subtitle Ripper for Linux
-If you want to convert DVD subtitles into text format (e.g. subrip format) or
-VobSub format this program could be useful for you. However, it is only one
-tiny tool that you need in the process of producing srt files. This software
-depends heavily on transcode for its input and is therefore part of the
-transcode package (see transcode's contrib directory). So, if you want to
-convert some subtitles, grap a copy of the lates transcode distribution.
+If you want to convert DVD subtitles into text format (e.g. subrip
+format) or VobSub format this program could be useful for
+you. However, it is only one tiny tool that you need in the process
+of producing srt files. This software depends heavily on transcode
+for its input and is therefore part of the transcode package (see
+transcode's contrib directory). So, if you want to convert some
+subtitles, grap a copy of the latest transcode distribution.
For srt file production the output of this program should be processed
by some OCR software.
diff --git a/multimedia/subtitleripper/subtitleripper.SlackBuild b/multimedia/subtitleripper/subtitleripper.SlackBuild
index f6ede247b5..ba8d4d3a49 100644
--- a/multimedia/subtitleripper/subtitleripper.SlackBuild
+++ b/multimedia/subtitleripper/subtitleripper.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for subtitleripper
@@ -24,11 +24,14 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=subtitleripper
VERSION=${VERSION:-0.3_4}
SRCVER=$(printf $VERSION |sed 's/_/-/')
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -38,7 +41,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}
@@ -95,4 +105,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