summaryrefslogtreecommitdiffstats
path: root/system/xautomation/xautomation.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'system/xautomation/xautomation.SlackBuild')
-rw-r--r--system/xautomation/xautomation.SlackBuild14
1 files changed, 8 insertions, 6 deletions
diff --git a/system/xautomation/xautomation.SlackBuild b/system/xautomation/xautomation.SlackBuild
index e829d02573..73027e730b 100644
--- a/system/xautomation/xautomation.SlackBuild
+++ b/system/xautomation/xautomation.SlackBuild
@@ -3,9 +3,10 @@
# Slackware build script for xautomation.
# Written by V'yacheslav Stetskevych
+# Modified by B. Watson
PRGNAM=xautomation
-VERSION=${VERSION:-1.08}
+VERSION=${VERSION:-1.09}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -64,15 +65,16 @@ LDFLAGS="-lX11" \
--build=$ARCH-slackware-linux
make
-make install-strip DESTDIR=$PKG
+
+# 20140610 bkw: install-strip only installs xte, not the other binaries!
+# regular make install is OK, strip them afterwards.
+make install DESTDIR=$PKG
+strip $PKG/usr/bin/*
find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING INSTALL README \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a AUTHORS COPYING INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install