diff options
Diffstat (limited to 'development/diffoscope/diffoscope.SlackBuild')
-rw-r--r-- | development/diffoscope/diffoscope.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/development/diffoscope/diffoscope.SlackBuild b/development/diffoscope/diffoscope.SlackBuild index 27c18f9abe..e581aad557 100644 --- a/development/diffoscope/diffoscope.SlackBuild +++ b/development/diffoscope/diffoscope.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for diffoscope -# Copyright 2024 Matt Egger, USA +# Copyright 2024-2025 Matt Egger, Philadelphia, PA, USA # Copyright 2016 David Spencer, Baildon, West Yorkshire, U.K. # All rights reserved. # @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=diffoscope -VERSION=${VERSION:-283} +VERSION=${VERSION:-305} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -87,10 +87,8 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr # generate man page mkdir -p $PKG/usr/man/man1 -cd doc -make -mv diffoscope.1 $PKG/usr/man/man1/diffoscope.1 -cd .. +make -C doc +mv doc/diffoscope.1 $PKG/usr/man/man1/diffoscope.1 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 |