1
0

postinst 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #! /bin/sh
  2. # postinst script for libphysfs0
  3. #
  4. # see: dh_installdeb(1)
  5. set -e
  6. # summary of how this script can be called:
  7. # * <postinst> `configure' <most-recently-configured-version>
  8. # * <old-postinst> `abort-upgrade' <new version>
  9. # * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  10. # <new-version>
  11. # * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  12. # <failed-install-package> <version> `removing'
  13. # <conflicting-package> <version>
  14. # for details, see http://www.debian.org/doc/debian-policy/ or
  15. # the debian-policy package
  16. #
  17. # quoting from the policy:
  18. # Any necessary prompting should almost always be confined to the
  19. # post-installation script, and should be protected with a conditional
  20. # so that unnecessary prompting doesn't happen if a package's
  21. # installation fails and the `postinst' is called with `abort-upgrade',
  22. # `abort-remove' or `abort-deconfigure'.
  23. case "$1" in
  24. configure)
  25. ;;
  26. abort-upgrade|abort-remove|abort-deconfigure)
  27. ;;
  28. *)
  29. echo "postinst called with unknown argument \`$1'" >&2
  30. exit 1
  31. ;;
  32. esac
  33. # dh_installdeb will replace this with shell code automatically
  34. # generated by other debhelper scripts.
  35. #DEBHELPER#
  36. exit 0