diff options
author | Markus Reichelt <slackbuilds@mareichelt.de> | 2021-02-07 01:36:33 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-02-07 01:36:33 +0700 |
commit | 750bafd59e8b1a22575adde38f26463557eb5498 (patch) | |
tree | fe6025f1b54e92c50683bb6fff97b349044f3f85 /libraries/Botan/Botan.SlackBuild | |
parent | 6606f68eec58760781a3d5349cbb40774471bda8 (diff) |
libraries/Botan: Updated for version 2.17.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/Botan/Botan.SlackBuild')
-rw-r--r-- | libraries/Botan/Botan.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libraries/Botan/Botan.SlackBuild b/libraries/Botan/Botan.SlackBuild index 7cd332711abe6..295fb78aef042 100644 --- a/libraries/Botan/Botan.SlackBuild +++ b/libraries/Botan/Botan.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for Botan -# Copyright (c) 2010-2020 Markus Reichelt, Aachen, DE +# Copyright (c) 2010-2021 Markus Reichelt, Aachen, DE # All rights reserved. # # Permission to use, copy, modify, and distribute this software for @@ -26,7 +26,7 @@ # Markus Reichelt, slackbuilds@mareichelt.de, 0xCCEEF115 PRGNAM=Botan -VERSION=${VERSION:-2.16.0} +VERSION=${VERSION:-2.17.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -95,6 +95,9 @@ make install DESTDIR=$PKG 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 +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 + cp -a *.rst *.txt doc/ $PKG/usr/doc/$PRGNAMI-$VERSION/ rm -rf $PKG/usr/doc/$PRGNAMI-$VERSION/doc |