doinst.sh 940 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. config() {
  2. NEW="$1"
  3. OLD="$(dirname $NEW)/$(basename $NEW .new)"
  4. # If there's no config file by that name, mv it over:
  5. if [ ! -r $OLD ]; then
  6. mv $NEW $OLD
  7. elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
  8. # toss the redundant copy
  9. rm $NEW
  10. fi
  11. # Otherwise, we leave the .new copy for the admin to consider...
  12. }
  13. preserve_perms() {
  14. NEW="$1"
  15. OLD="$(dirname $NEW)/$(basename $NEW .new)"
  16. if [ -e $OLD ]; then
  17. cp -a $OLD ${NEW}.incoming
  18. cat $NEW > ${NEW}.incoming
  19. mv ${NEW}.incoming $NEW
  20. fi
  21. config $NEW
  22. }
  23. for f in etc/mpv/*.conf.new ; do
  24. preserve_perms $f
  25. done
  26. if [ -x /usr/bin/update-desktop-database ]; then
  27. /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
  28. fi
  29. if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
  30. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  31. /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
  32. fi
  33. fi