Firefox.munki.recipe 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>Description</key>
  6. <string>Downloads Firefox disk image and imports into Munki.
  7. Some useful values for RELEASE are: 'latest', 'esr-latest', 'beta-latest'.
  8. LOCALE controls the language localization to be downloded.
  9. Examples include 'en-US', 'de', 'sv-SE', and 'zh-TW'
  10. See the following URLs for more info:
  11. http://ftp.mozilla.org/pub/firefox/releases/latest/README.txt
  12. http://ftp.mozilla.org/pub/firefox/releases/latest-esr/README.txt
  13. http://ftp.mozilla.org/pub/firefox/releases/latest-beta/README.txt</string>
  14. <key>Identifier</key>
  15. <string>com.github.autopkg.munki.firefox-rc-en_US</string>
  16. <key>Input</key>
  17. <dict>
  18. <key>MUNKI_REPO_SUBDIR</key>
  19. <string>apps/</string>
  20. <key>MUNKI_CATEGORY</key>
  21. <string>Internettools</string>
  22. <key>NAME</key>
  23. <string>Firefox</string>
  24. <key>pkginfo</key>
  25. <dict>
  26. <key>catalogs</key>
  27. <array>
  28. <string>test</string>
  29. <string>prod</string>
  30. </array>
  31. <key>description</key>
  32. <string>Mozilla Firefox is a free and open source web browser.</string>
  33. <key>display_name</key>
  34. <string>Mozilla Firefox</string>
  35. <key>name</key>
  36. <string>%NAME%</string>
  37. <key>category</key>
  38. <string>%MUNKI_CATEGORY%</string>
  39. <key>developer</key>
  40. <string>Mozilla</string>
  41. <key>unattended_install</key>
  42. <true/>
  43. </dict>
  44. </dict>
  45. <key>MinimumVersion</key>
  46. <string>2.0</string>
  47. <key>ParentRecipe</key>
  48. <string>com.github.autopkg.download.firefox-rc-en_US</string>
  49. <key>Process</key>
  50. <array>
  51. <dict>
  52. <key>Arguments</key>
  53. <dict>
  54. <key>pkg_path</key>
  55. <string>%pathname%</string>
  56. <key>repo_subdirectory</key>
  57. <string>%MUNKI_REPO_SUBDIR%</string>
  58. </dict>
  59. <key>Processor</key>
  60. <string>MunkiImporter</string>
  61. </dict>
  62. </array>
  63. </dict>
  64. </plist>