chromium.install 757 B

12345678910111213141516
  1. post_upgrade() {
  2. if (($(vercmp $2 42.0.2311.90-1) < 0)); then
  3. echo ':: This Chromium package no longer supports custom flags passed via the'
  4. echo ' /etc/chromium/default file (or any other files under /etc/chromium/).'
  5. echo
  6. echo ' The new /usr/bin/chromium launcher script will automatically detect'
  7. echo ' Pepper Flash (if installed) and pass the correct flags to Chromium.'
  8. echo
  9. echo ' If you need to pass extra command-line arguments to Chromium, you'
  10. echo ' can put them in a "chromium-flags.conf" file under $HOME/.config/'
  11. echo ' (or $XDG_CONFIG_HOME). Arguments are split on whitespace and shell'
  12. echo ' quoting rules apply but no further parsing is performed.'
  13. fi
  14. }
  15. # vim:set ts=2 sw=2 et: