summaryrefslogtreecommitdiff
path: root/libraries/Botan/Botan.SlackBuild
diff options
context:
space:
mode:
authorMarkus Reichelt <slackbuilds@mareichelt.de>2019-11-03 07:12:33 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-11-03 07:12:33 +0700
commit155cb0c969535607a39529d7cdbcc7d9f84b90ec (patch)
treeb34b928dd75b90ef70f7378ed688b921e352155c /libraries/Botan/Botan.SlackBuild
parente5e4c040f18c64e7b4686c3c9b07e955cd934094 (diff)
downloadslackbuilds-155cb0c969535607a39529d7cdbcc7d9f84b90ec.tar.gz
libraries/Botan: Updated for version 2.12.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/Botan/Botan.SlackBuild')
-rw-r--r--libraries/Botan/Botan.SlackBuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/libraries/Botan/Botan.SlackBuild b/libraries/Botan/Botan.SlackBuild
index fc32cd5241..7a3caa1d9d 100644
--- a/libraries/Botan/Botan.SlackBuild
+++ b/libraries/Botan/Botan.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for Botan
-# Copyright (c) 2010-2018 Markus Reichelt, Aachen, DE
+# Copyright (c) 2010-2019 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.8.0}
+VERSION=${VERSION:-2.12.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -65,7 +65,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tgz
+tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@@ -81,11 +81,11 @@ python configure.py \
--prefix=/usr \
--docdir=doc \
--libdir=lib$LIBDIRSUFFIX \
+ --mandir=/usr/man \
--with-doxygen
make
-DESTDIR="$PKG/" \
-make install
+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