diff options
Diffstat (limited to 'libraries/cryptopp/cryptopp.SlackBuild')
-rw-r--r-- | libraries/cryptopp/cryptopp.SlackBuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/libraries/cryptopp/cryptopp.SlackBuild b/libraries/cryptopp/cryptopp.SlackBuild index a971e8bcc17cb..3f35780fe5c9b 100644 --- a/libraries/cryptopp/cryptopp.SlackBuild +++ b/libraries/cryptopp/cryptopp.SlackBuild @@ -6,7 +6,7 @@ # Maintained by Markus Reichelt <slackbuilds@mareichelt.de> 0xCCEEF115 PRGNAM=cryptopp -VERSION=${VERSION:-5.6.3} +VERSION=${VERSION:-5.6.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -68,18 +68,17 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild if [ "$DOC" = "yes" ]; then # Fix Doxyfile to create man pages - # sed -i "s/GENERATE_MAN = NO/GENERATE_MAN = YES/" Doxyfile - # sed -i "s/MAN_LINKS = NO/MAN_LINKS = YES/" Doxyfile + #sed -i "s/GENERATE_MAN = NO/GENERATE_MAN = YES/" Doxyfile + #sed -i "s/MAN_LINKS = NO/MAN_LINKS = YES/" Doxyfile doxygen Doxyfile - cp -a doc/html $PKG/usr/doc/$PRGNAM-$VERSION + cp -a html-docs $PKG/usr/doc/$PRGNAM-$VERSION - # uncomment the following to also have man 3 pages prepared and installed - # cp -a doc/man $PKG/usr - # rm $PKG/usr/man/man3/_* - # 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 + # uncomment the following to also have the prepared man 3 pages properly installed + #mv $PKG/usr/doc/$PRGNAM-$VERSION/html-docs/man $PKG/usr + #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 fi mkdir -p $PKG/install |