slackbuilds_ponce/perl/rakudo/doinst.sh
Andreas Voegele b8856d36b1 perl/rakudo: Updated f/v 2018.06, moved from development/, new maint
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2018-07-09 17:51:46 +01:00

15 lines
419 B
Bash

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/rakudo.csh.new
config etc/profile.d/rakudo.sh.new