slackbuilds_ponce/development/jeex/doinst.sh
dsomero ec8897b13f development/jeex: Fixed (Don't clobber config, handle desktop file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2012-09-29 17:17:42 -05:00

20 lines
571 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/jeex/magic.binary.new
config etc/jeex/jeex.rc.new
config etc/jeex/magic.text.new
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi