forked from autopkg/MLBZ521-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQGIS.download.recipe
50 lines (49 loc) · 1.51 KB
/
QGIS.download.recipe
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Description</key>
<string>Downloads the latest version of QGIS. Requires python.org Python 3.6 to be pre-installed - other distributions are not supported.
Supports either the latest release or Long Term (support) Release. Override the key "RELEASE_TYPE" to specify which you need:
Latest Release = "pr"
Long Term (support) Release = "ltr"</string>
<key>Identifier</key>
<string>com.github.mlbz521.download.QGIS</string>
<key>Input</key>
<dict>
<key>NAME</key>
<string>QGIS</string>
<key>RELEASE_TYPE</key>
<string>pr</string>
<key>URL</key>
<string>https://qgis.org/downloads/macos/qgis-macos-%RELEASE_TYPE%.dmg</string>
</dict>
<key>MinimumVersion</key>
<string>0.4.0</string>
<key>Process</key>
<array>
<dict>
<key>Processor</key>
<string>URLDownloader</string>
<key>Arguments</key>
<dict>
<key>url</key>
<string>%URL%</string>
</dict>
</dict>
<dict>
<key>Processor</key>
<string>AppDmgVersioner</string>
<key>Arguments</key>
<dict>
<key>dmg_path</key>
<string>%pathname%</string>
</dict>
</dict>
<dict>
<key>Processor</key>
<string>EndOfCheckPhase</string>
</dict>
</array>
</dict>
</plist>