diff options
Diffstat (limited to 'development/bcpp/bcpp.SlackBuild')
-rw-r--r-- | development/bcpp/bcpp.SlackBuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/development/bcpp/bcpp.SlackBuild b/development/bcpp/bcpp.SlackBuild index 967c55ad3277..0b60a9c20d60 100644 --- a/development/bcpp/bcpp.SlackBuild +++ b/development/bcpp/bcpp.SlackBuild @@ -6,12 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20240925 bkw: update for v20240917. # 20240312 bkw: update for v20240111. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=bcpp -VERSION=${VERSION:-20240111} +VERSION=${VERSION:-20240917} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -73,7 +74,12 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG strip $PKG/usr/bin/$PRGNAM -gzip -9 $PKG/usr/man/*/* + +cd $PKG/usr/man/man1/ +gzip -9 bcpp.1 +rm -f cb++.1 +ln -s bcpp.1.gz cb++.1.gz +cd - # stuff in txtdocs/: hirachy.txt documents internals, for hacking # bcpp's code (not needed in a SBo package), and manual.txt is just |