diff options
author | B. Watson <urchlay@slackware.uk> | 2022-12-28 14:13:30 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-31 09:14:52 +0700 |
commit | b78b646f57cbda3a997b0265cd0a420c6be21977 (patch) | |
tree | b533f85c5975504dc4dd20a27f6c9673a0c11bc4 /system/pipemeter | |
parent | d656cdb175da6dfdbb8c58392a3fe45e89120641 (diff) |
system/pipemeter: Fix man page permissions.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/pipemeter')
-rw-r--r-- | system/pipemeter/pipemeter.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/system/pipemeter/pipemeter.SlackBuild b/system/pipemeter/pipemeter.SlackBuild index 610d2a388575..b315b57767da 100644 --- a/system/pipemeter/pipemeter.SlackBuild +++ b/system/pipemeter/pipemeter.SlackBuild @@ -6,11 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20221228 bkw: BUILD=2, fix bad man page permissions. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=pipemeter VERSION=${VERSION:-1.1.5} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -63,7 +65,8 @@ make make install DESTDIR=$PKG cp -a pipecp $PKG/usr/bin -gzip -9 $PKG/usr/man/man1/$PRGNAM.1 +chmod 644 $PKG/usr/man/man?/*.? +gzip -9 $PKG/usr/man/man?/*.? mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp README LICENSE Changelog $PKG/usr/doc/$PRGNAM-$VERSION |