summaryrefslogtreecommitdiffstats
path: root/development/git-lfs
diff options
context:
space:
mode:
author Erich Ritz2023-02-22 19:03:37 +0100
committer Willy Sudiarto Raharjo2023-02-22 19:03:37 +0100
commitecb775ce2094704e4c6a372be28090b29cd341ff (patch)
tree7edc4589f80c94eb115e6bd6a219a1dfb214f4e8 /development/git-lfs
parentc210d1df7961350b6858a51a28ccf130bef8079b (diff)
downloadslackbuilds-ecb775ce2094704e4c6a372be28090b29cd341ff.tar.gz
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.SlackBuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/development/git-lfs/git-lfs.SlackBuild b/development/git-lfs/git-lfs.SlackBuild
index e4a0e5e7db..21787ffa1a 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