diff options
author | Pablo Santamaria <pablosantamaria@gmail.com> | 2010-05-13 00:58:24 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:58:24 +0200 |
commit | f885c29e2c8d70d79915c5c15522525c9cbea4ec (patch) | |
tree | fa304c9798a21a11a67078c4ca53d297e8cc44cd /graphics/tuxpaint/doinst.sh | |
parent | 4e74b51c783ceb625baca8f4b4d884246103434a (diff) | |
download | slackbuilds-f885c29e2c8d70d79915c5c15522525c9cbea4ec.tar.gz |
graphics/tuxpaint: Added to 13.0 repository
Diffstat (limited to 'graphics/tuxpaint/doinst.sh')
-rw-r--r-- | graphics/tuxpaint/doinst.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/graphics/tuxpaint/doinst.sh b/graphics/tuxpaint/doinst.sh new file mode 100644 index 0000000000..be2037092f --- /dev/null +++ b/graphics/tuxpaint/doinst.sh @@ -0,0 +1,29 @@ +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/tuxpaint/tuxpaint.conf.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + |