diff options
author | Daniel R <danielrodriguez.es@gmail.com> | 2010-05-13 01:00:59 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 01:00:59 +0200 |
commit | b4572abe58e665b924d81eb7ba0675a019f323b4 (patch) | |
tree | 8342fe6f6bf79934af5da760f98c59286b375620 /system/opensc-ceres/doinst.sh | |
parent | b96fb91780d69d898f78e20f69975cde8d3e7c88 (diff) | |
download | slackbuilds-b4572abe58e665b924d81eb7ba0675a019f323b4.tar.gz |
system/opensc-ceres: Added to 13.0 repository
Diffstat (limited to 'system/opensc-ceres/doinst.sh')
-rw-r--r-- | system/opensc-ceres/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/system/opensc-ceres/doinst.sh b/system/opensc-ceres/doinst.sh new file mode 100644 index 0000000000..5d1f522e48 --- /dev/null +++ b/system/opensc-ceres/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/opensc.conf.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + |