diff options
Diffstat (limited to 'development/bmake/bmake.SlackBuild')
-rw-r--r-- | development/bmake/bmake.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/development/bmake/bmake.SlackBuild b/development/bmake/bmake.SlackBuild index 05f140d3e9886..8b393206ea2c0 100644 --- a/development/bmake/bmake.SlackBuild +++ b/development/bmake/bmake.SlackBuild @@ -24,6 +24,7 @@ # Now maintained by B. Watson <yalhcru@gmail.com> +# 20201106 bkw: update for 20201010 # 20200306 bkw: update for 20200212 # 20191211 bkw: update for 20181221 # 20170214 bkw: @@ -34,7 +35,7 @@ # portion of the bmake build. PRGNAM=bmake -VERSION=${VERSION:-20200212} +VERSION=${VERSION:-20201010} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -116,8 +117,11 @@ mv $PKG/usr/share/mk $PKG/usr/share/mk-$PRGNAM find -L $PKG -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ -# Binary is already stripped. Only have one man page: -gzip -9 $PKG/usr/man/man1/$PRGNAM.1 +# Binary is already stripped. Only have one man page. +# Oh FFS, 20201010 ignores MANTARGET, we get /usr/man/cat1. +rm -rf $PKG/usr/man/* +mkdir -p $PKG/usr/man/man1 +gzip -9c < $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION head -n70 main.c > LICENSE |