mirror of
git://slackware.nl/current.git
synced 2025-01-14 08:01:11 +01:00
78efd88e4c
a/less-668-x86_64-2.txz: Rebuilt. I have tried to like the lesspipe.sh from https://github.com/wofr06 since it was switched to about 6 months ago, but it's just not working out here -- trying to look at fontconfig *.conf files was the last straw for me. So, I'm changing lesspipe.sh back to the Slackware version (less is more ;-). The lesspipe-wofr06.sh will still be included (and in fact it was upgraded to lesspipe-2.16), so if you prefer it feel free to relink to it. l/fluidsynth-2.4.1-x86_64-1.txz: Upgraded. l/spirv-llvm-translator-19.1.2-x86_64-1.txz: Upgraded. x/noto-emoji-2.047-noarch-1.txz: Upgraded. x/noto-fonts-ttf-2024.12.01-noarch-1.txz: Upgraded.
23 lines
717 B
Bash
23 lines
717 B
Bash
#!/bin/sh
|
|
|
|
config() {
|
|
NEW="$1"
|
|
OLD="`dirname $NEW`/`basename $NEW .new`"
|
|
# If there's no config file by that name, mv it over:
|
|
if [ ! -r $OLD ]; then
|
|
mv $NEW $OLD
|
|
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
|
|
rm $NEW
|
|
fi
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
}
|
|
|
|
config etc/profile.d/less.csh.new
|
|
config etc/profile.d/less.sh.new
|
|
|
|
# Link to a default lesspipe script. If you don't like this, relink to the
|
|
# other version, or install anything else you like as /usr/bin/lesspipe.sh.
|
|
# This package will leave it alone after that.
|
|
if [ ! -e usr/bin/lesspipe.sh ]; then
|
|
( cd usr/bin ; ln -sf lesspipe-volkerdi.sh lesspipe.sh )
|
|
fi
|