diff options
author | B. Watson <yalhcru@gmail.com> | 2020-11-06 15:59:57 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-11-07 14:02:38 +0700 |
commit | c1e9093e2076d4d89f0f1e0351c4c939edffc636 (patch) | |
tree | 2ea8378f05299d4cd789e9372bcf4afa3f76bf3f /development/bmake/bmake.SlackBuild | |
parent | 0839b2c40cff536e22c1e30f94d3f18f9eaa5f82 (diff) |
development/bmake: Updated for version 20201010.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 |