diff options
Diffstat (limited to 'system/fastfetch/fastfetch.SlackBuild')
-rw-r--r-- | system/fastfetch/fastfetch.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/system/fastfetch/fastfetch.SlackBuild b/system/fastfetch/fastfetch.SlackBuild index 2ed6f2f3db..4a71e7d153 100644 --- a/system/fastfetch/fastfetch.SlackBuild +++ b/system/fastfetch/fastfetch.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for fastfetch -# Copyright 2023-2024 Samuel Young, MO, USA +# Copyright 2023-2025 Samuel Young, MO, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=fastfetch -VERSION=${VERSION:-2.29.0} +VERSION=${VERSION:-2.50.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -113,6 +113,11 @@ mv $PKG/usr/share/man $PKG/usr 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 +# Only install fish shell completions if fish is installed +if [ ! -e /usr/bin/fish ]; then + rm -rv $PKG/usr/share/fish +fi + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ CHANGELOG.md README.md LICENSE \ |