diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-16 15:12:02 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-16 15:12:02 -0400 |
commit | 91f48d7ce07f2621e2b11efb7a8d333806b4b745 (patch) | |
tree | 3ee95d2c3b6b9867b61ec8f62b7595013035e7b4 /libraries/Botan | |
parent | 408382b675941605a0737108fbac66ff326b1981 (diff) |
libraries/Botan: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/Botan')
-rw-r--r-- | libraries/Botan/Botan.SlackBuild | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libraries/Botan/Botan.SlackBuild b/libraries/Botan/Botan.SlackBuild index 3d85a75fa860f..414d63cb090f0 100644 --- a/libraries/Botan/Botan.SlackBuild +++ b/libraries/Botan/Botan.SlackBuild @@ -25,11 +25,14 @@ # # Markus Reichelt, slackbuilds@mareichelt.de, 0xCCEEF115 +# 20220416 bkw: Modified by SlackBuilds.org, BUILD=2: +# - use correct doc dir (usr/doc/$PRGNAM-$VERSION). + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=Botan VERSION=${VERSION:-2.17.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -43,9 +46,6 @@ fi PRGNAMI=botan -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -80,9 +80,9 @@ cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ LDFLAGS="$LDFLAGS" \ CFLAGS="$SLKCFLAGS" \ @@ -102,17 +102,17 @@ make #LD_LIBRARY_PATH=. ./botan-test make install DESTDIR=$PKG +gzip -9 $PKG/usr/man/man*/* + 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 +# 20220416 bkw: 'make install' uses the wrong name for the doc dir, +# lowercase "botan". our doc dir must match the SlackBuild's name. +mv $PKG/usr/doc/$PRGNAMI-$VERSION $PKG/usr/doc/$PRGNAM-$VERSION +cp -a *.rst *.txt $PKG/usr/doc/$PRGNAM-$VERSION/ -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAMI-$VERSION/$PRGNAM.SlackBuild +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |