diff options
author | Erich Ritz <erich.public@protonmail.com> | 2023-02-23 01:03:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-02-23 01:03:37 +0700 |
commit | ecb775ce2094704e4c6a372be28090b29cd341ff (patch) | |
tree | 7edc4589f80c94eb115e6bd6a219a1dfb214f4e8 /development/git-lfs | |
parent | c210d1df7961350b6858a51a28ccf130bef8079b (diff) |
development/git-lfs: Fix man pages location.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/git-lfs')
-rw-r--r-- | development/git-lfs/git-lfs.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/development/git-lfs/git-lfs.SlackBuild b/development/git-lfs/git-lfs.SlackBuild index e4a0e5e7dbc1d..21787ffa1a9ac 100644 --- a/development/git-lfs/git-lfs.SlackBuild +++ b/development/git-lfs/git-lfs.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for git-lfs -# Copyright 2015-2022 Willy Sudiarto Raharjo <willysr@slackbuilds.org> +# Copyright 2015-2023 Willy Sudiarto Raharjo <willysr@slackbuilds.org> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=git-lfs VERSION=${VERSION:-3.3.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -78,8 +78,8 @@ mkdir -p $PKG/usr/bin install -m0755 $PRGNAM $PKG/usr/bin rm -f install.sh -mkdir -p $PKG/usr/man/man1/ -mv man/* $PKG/usr/man/man1/ +mkdir -p $PKG/usr/man/ +mv man/* $PKG/usr/man/ 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 |