File: Distribution.xml.in

package info (click to toggle)
opensc 0.27.0~rc2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,844 kB
  • sloc: ansic: 184,917; xml: 6,535; sh: 2,766; makefile: 1,035; cpp: 382; lex: 92
file content (28 lines) | stat: -rw-r--r-- 1,337 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--
https://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/DistributionDefinitionRef/
https://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/InstallerJavaScriptRef/
-->
<installer-gui-script minSpecVersion="2">
    <allowed-os-versions>
      <os-version min="10.13"/>
    </allowed-os-versions>
    <background file="background.jpg" mime-type="image/jpeg" scaling="tofit"/>
    <welcome file="Welcome.html" mime-type="text/html"/>
    <title>@PACKAGE_STRING@</title>
    <options customize="allow" hostArchitectures="arm64,x86_64" require-scripts="false" rootVolumeOnly="true"/>
    <choices-outline>
        <line choice="default" />
        <line choice="startup" />
        <line choice="token" />
    </choices-outline>
    <choice id="default" title="PKCS#11 module and smart card tools" enabled="false">
        <pkg-ref id="org.opensc-project.mac">OpenSC.pkg</pkg-ref>
    </choice>
    <choice id="token" title="CryptoTokenKit-based smart card driver">
        <pkg-ref id="org.opensc-project.mac.opensctoken">OpenSCToken.pkg</pkg-ref>
    </choice>
    <choice id="startup" title="Automatic startup items">
        <pkg-ref id="org.opensc-project.startup">OpenSC-startup.pkg</pkg-ref>
    </choice>
</installer-gui-script>