From e33c641b630ab8d7150403793685f2eccee0ce60 Mon Sep 17 00:00:00 2001 From: Dario Nicodemi Date: Thu, 8 Apr 2010 22:12:25 -0500 Subject: academic/xephem: Added (an astronomy program) --- academic/xephem/doinst.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 academic/xephem/doinst.sh (limited to 'academic/xephem/doinst.sh') diff --git a/academic/xephem/doinst.sh b/academic/xephem/doinst.sh new file mode 100644 index 0000000000..995b974819 --- /dev/null +++ b/academic/xephem/doinst.sh @@ -0,0 +1,19 @@ +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/X11/app-defaults/XEphem.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + -- cgit v1.2.3