/src/ports/oses/mac_osx.tt_data

http://github.com/perlorg/cpanorg · Unknown · 102 lines · 96 code · 6 blank · 0 comment · 0 complexity · 6676e710779b40546ac9da25225054a2 MD5 · raw file

  1. [%
  2. # Setup information
  3. os_config = {
  4. name => 'OS X',
  5. url => 'http://www.apple.com/osx/',
  6. vendor => 'Apple',
  7. information_last_verified => '2014-01-04',
  8. }
  9. %]
  10. [% BLOCK show_os %]
  11. <p>
  12. Mac OS X ships with Perl as a standard component.
  13. </p>
  14. [% PROCESS binary_view binary_source => [
  15. {
  16. name => 'ActiveState',
  17. url => activestate_url,
  18. notes => 'In universal disk image format'
  19. },
  20. {
  21. name => 'MacPorts',
  22. url => 'http://www.macports.org/',
  23. notes => 'Formerly known as DarwinPorts',
  24. },
  25. {
  26. name => 'Fink',
  27. url => 'http://www.finkproject.org/',
  28. },
  29. ]
  30. %]
  31. [% PROCESS version_view os_versions => {
  32. versions => [
  33. {
  34. os_name => 'El Capitan',
  35. os_version => '10.11',
  36. perl_version => '5.18.2',
  37. },
  38. {
  39. os_name => 'Yosemite',
  40. os_version => '10.10',
  41. perl_version => '5.18.2',
  42. },
  43. {
  44. os_name => 'Mavericks',
  45. os_version => '10.9',
  46. perl_version => '5.16.2',
  47. },
  48. {
  49. os_name => 'Mountain Lion',
  50. os_version => '10.8',
  51. perl_version => '5.12.4',
  52. },
  53. {
  54. os_name => 'Lion',
  55. os_version => '10.7',
  56. perl_version => '5.12.3',
  57. },
  58. {
  59. os_name => 'Snow Leopard',
  60. os_version => '10.6',
  61. perl_version => '5.10.0',
  62. },
  63. {
  64. os_name => 'Leopard',
  65. os_version => '10.5',
  66. perl_version => '5.8.8',
  67. },
  68. {
  69. os_name => 'Tiger',
  70. os_version => '10.4',
  71. perl_version => '5.8.6+patches',
  72. },
  73. {
  74. os_name => 'Panther',
  75. os_version => '10.3',
  76. perl_version => '5.8.1-RC3+patches',
  77. },
  78. {
  79. os_name => 'Jaguar',
  80. os_version => '10.2',
  81. perl_version => '5.6.0',
  82. },
  83. ],
  84. } %]
  85. <p class="from_source">
  86. To build from source (or build XS modules) you need to install
  87. GCC which is available as part of "Command Line Tools for XCode",
  88. this can be installed on it's own, or from within Xcode, both of which are
  89. available from <a href="https://developer.apple.com/downloads/">
  90. Apple Developer downloads</a> (free registration required).
  91. Xcode can also be installed through the
  92. <a href="http://itunes.apple.com/gb/app/xcode/id497799835?mt=12">Mac App
  93. Store</a>. <em>(Note: in 10.3 you should also install the optional BSD
  94. SDK, otherwise installing new Perl modules won't work.)</em>
  95. </p>
  96. [% END %]