-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathLibreOffice.install.recipe
45 lines (44 loc) · 1.41 KB
/
LibreOffice.install.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
<?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>Installs the latest version of LibreOffice. Set RELEASE to either 'Latest' or 'Previous'.
LibreOffice Previous is the stable version that has undergone more testing (over a longer time). It is usually recommended for more conservative use.
LibreOffice Latest is the stable version with the most recent features. Users interested in taking advantage of our most innovative features should download and use our Latest version.</string>
<key>Identifier</key>
<string>io.github.hjuutilainen.install.LibreOffice</string>
<key>Input</key>
<dict>
<key>NAME</key>
<string>LibreOffice</string>
<key>RELEASE</key>
<string>Latest</string>
</dict>
<key>MinimumVersion</key>
<string>0.4.0</string>
<key>ParentRecipe</key>
<string>io.github.hjuutilainen.download.LibreOffice</string>
<key>Process</key>
<array>
<dict>
<key>Processor</key>
<string>InstallFromDMG</string>
<key>Arguments</key>
<dict>
<key>dmg_path</key>
<string>%pathname%</string>
<key>items_to_copy</key>
<array>
<dict>
<key>source_item</key>
<string>LibreOffice.app</string>
<key>destination_path</key>
<string>/Applications/</string>
</dict>
</array>
</dict>
</dict>
</array>
</dict>
</plist>