summaryrefslogtreecommitdiffstats
path: root/desktop/e16/e16.SlackBuild
diff options
context:
space:
mode:
author Josiah Boothby <josiahb@gmail.com>2021-01-02 00:41:21 +0000
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2021-01-02 10:48:29 +0700
commit1b2401039d233c4900f68aae1e8ba42dadf7a122 (patch)
tree7661d386ebf35a0ba852b292011b11447615a064 /desktop/e16/e16.SlackBuild
parentbdc5e5fd2e1eceb2917fb8dca07ccf8a908a9eb6 (diff)
downloadslackbuilds-1b2401039d233c4900f68aae1e8ba42dadf7a122.tar.gz
slackbuilds-1b2401039d233c4900f68aae1e8ba42dadf7a122.tar.xz
desktop/e16: Updated for version 1.0.22.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/e16/e16.SlackBuild')
-rw-r--r--desktop/e16/e16.SlackBuild9
1 files changed, 5 insertions, 4 deletions
diff --git a/desktop/e16/e16.SlackBuild b/desktop/e16/e16.SlackBuild
index 9c1a988b7d..e6882c0984 100644
--- a/desktop/e16/e16.SlackBuild
+++ b/desktop/e16/e16.SlackBuild
@@ -23,15 +23,15 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=e16
-VERSION=${VERSION:-1.0.21}
+VERSION=${VERSION:-1.0.22}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Optional themes and documentation
-THEMES=${THEMES:-1} # install themes by default
+THEMES=${THEMES:-YES} # install themes by default
TNAME=e16-themes
TVERSION=${TVERSION:-1.0.2}
-DOCS=${DOCS:-1} # install documentation by default
+DOCS=${DOCS:-YES} # install documentation by default
DNAME=e16-docs
DVERSION=${DVERSION:-0.16.8.0.2}
@@ -68,7 +68,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+tar xvf $CWD/$PRGNAM-$VERSION.tar.?z
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@@ -134,6 +134,7 @@ fi
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+# Compress man pages
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