summaryrefslogtreecommitdiffstats
path: root/pipelight
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2014-06-03 14:32:14 +0000
committer Eric Hameleers <alien@slackware.com>2014-06-03 14:32:14 +0000
commit24e89a8ad64b8e1fe9078bfeb1a1ab7564d39d4e (patch)
treee30b8f2a07d282d2161bb9c9bef0aa0628d37d1a /pipelight
parent97e0b9c30ed9c8f6cc00fc5af5ff907ca315af75 (diff)
downloadasb-24e89a8ad64b8e1fe9078bfeb1a1ab7564d39d4e.tar.gz
asb-24e89a8ad64b8e1fe9078bfeb1a1ab7564d39d4e.tar.xz
Update to 0.2.7, adds man page for pipelight-plugin
Diffstat (limited to 'pipelight')
-rwxr-xr-xpipelight/build/pipelight.SlackBuild12
1 files changed, 10 insertions, 2 deletions
diff --git a/pipelight/build/pipelight.SlackBuild b/pipelight/build/pipelight.SlackBuild
index 675161a7..38a4d86b 100755
--- a/pipelight/build/pipelight.SlackBuild
+++ b/pipelight/build/pipelight.SlackBuild
@@ -47,8 +47,10 @@
# 0.2.5-1: 22/feb/2014 by Eric Hameleers <alien@slackware.com>
# * Update, together with wine-pipelight 1.7.13.
# 0.2.6-1: 08/apr/2014 by Eric Hameleers <alien@slackware.com>
-# * Update, together with wine-pipelight 1.7.17. On 64-bit
+# * Update, together with wine-pipelight 1.7.16. On 64-bit
# Slackware, enable 64-bit Wine plugin support.
+# 0.2.7-1: 03/jun/2014 by Eric Hameleers <alien@slackware.com>
+# * Update, together with wine-pipelight 1.7.19.
#
# Run 'sh pipelight.SlackBuild' to build a Slackware package.
# The package (.tgz) and .txt file as well as build logs are created in /tmp .
@@ -57,7 +59,7 @@
# -----------------------------------------------------------------------------
PRGNAM=pipelight
-VERSION=${VERSION:-0.2.6}
+VERSION=${VERSION:-0.2.7}
TRUNKVERSION=$(echo $VERSION | cut -f1,2 -d'.')
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:" -j4 "}
@@ -271,6 +273,12 @@ cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
find $PKG/usr/doc -type f -exec chmod 644 {} \;
+# Compress the man page(s):
+if [ -d $PKG/usr/man ]; then
+ find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
+ for i in $(find $PKG/usr/man -type l -name "*.?") ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+fi
+
# Strip binaries (if any):
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true