| 1 | <?xml version="1.0" encoding="utf-8" standalone="no"?> |
|---|
| 2 | <installer-script minSpecVersion="1"> |
|---|
| 3 | |
|---|
| 4 | <!-- The original version was generated by PackageMaker --> |
|---|
| 5 | <!-- Reference Documentation for installer scripts: https://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html --> |
|---|
| 6 | |
|---|
| 7 | <title>Tahoe-LAFS</title> |
|---|
| 8 | |
|---|
| 9 | <options customize="never" allow-external-scripts="no" rootVolumeOnly="yes" /> |
|---|
| 10 | |
|---|
| 11 | <installation-check script="(function(){ |
|---|
| 12 | if(system.sysctl('hw.machine') != 'x86_64'){ |
|---|
| 13 | my.result.type = 'Fatal'; |
|---|
| 14 | my.result.message = 'x86_64 system required'; |
|---|
| 15 | return false; |
|---|
| 16 | } |
|---|
| 17 | return true; |
|---|
| 18 | })()" /> |
|---|
| 19 | |
|---|
| 20 | <volume-check> |
|---|
| 21 | <allowed-os-versions> |
|---|
| 22 | <os-version min="10.7" /> |
|---|
| 23 | </allowed-os-versions> |
|---|
| 24 | </volume-check> |
|---|
| 25 | |
|---|
| 26 | <choices-outline> |
|---|
| 27 | <line choice="choice0"/> |
|---|
| 28 | </choices-outline> |
|---|
| 29 | <choice id="choice0" visible="false"> |
|---|
| 30 | <pkg-ref id="com.leastauthority.tahoe"/> |
|---|
| 31 | </choice> |
|---|
| 32 | <pkg-ref id="com.leastauthority.tahoe" version="1.10.0" auth="Root">tahoe-lafs.pkg</pkg-ref> |
|---|
| 33 | |
|---|
| 34 | <license language="en" mime-type="text/plain"><![CDATA[ |
|---|
| 35 | Copyright 2006-2016 The Tahoe-LAFS Software Foundation |
|---|
| 36 | |
|---|
| 37 | You may use this package under the GNU General Public License, |
|---|
| 38 | version 2 or, at your option, any later version. You may use |
|---|
| 39 | this package under the Transitive Grace Period Public Licence, |
|---|
| 40 | version 1.0, or at your option, any later version. (You may |
|---|
| 41 | choose to use this package under the terms of either licence, |
|---|
| 42 | at your option.) See the file 'COPYING.GPL' for the terms of |
|---|
| 43 | the GNU General Public License, version 2. See the file |
|---|
| 44 | 'COPYING.TGPPL.rst' for the terms of the Transitive Grace |
|---|
| 45 | Period Public Licence, version 1.0. |
|---|
| 46 | ]]></license> |
|---|
| 47 | </installer-script> |
|---|