source: trunk/misc/build_helpers/osx/Distribution.xml

Last change on this file was 082bc3d, checked in by Brian Warner <warner@…>, at 2016-03-16T19:23:44Z

OS-X installer license: wrap to fit, update CC

  • Property mode set to 100644
File size: 1.7 KB
Line 
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[
35Copyright 2006-2016 The Tahoe-LAFS Software Foundation
36
37You may use this package under the GNU General Public License,
38version 2 or, at your option, any later version. You may use
39this package under the Transitive Grace Period Public Licence,
40version 1.0, or at your option, any later version. (You may
41choose to use this package under the terms of either licence,
42at your option.) See the file 'COPYING.GPL' for the terms of
43the GNU General Public License, version 2. See the file
44'COPYING.TGPPL.rst' for the terms of the Transitive Grace
45Period Public Licence, version 1.0.
46]]></license>
47</installer-script>
Note: See TracBrowser for help on using the repository browser.