forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handbrake.sls
48 lines (48 loc) · 1.89 KB
/
handbrake.sls
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
# both 32-bit (x86) AND a 64-bit (AMD64) installer available
{% set PROGRAM_FILES = "%ProgramFiles%" %}
# Source: https://handbrake.fr
handbrake:
'0.10.5':
full_name: 'Handbrake 0.10.5'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.2-x86_64-Win_GUI-1.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'https://handbrake.fr/mirror/HandBrake-0.10.5-i686-Win_GUI-1.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\Handbrake\uninst.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'0.10.2':
full_name: 'Handbrake 0.10.2'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://download.handbrake.fr/handbrake/releases/0.10.2/HandBrake-0.10.2-x86_64-Win_GUI.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'https://handbrake.fr/mirror/HandBrake-0.10.2-i686-Win_GUI.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\Handbrake\uninst.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'0.10.0':
full_name: 'Handbrake 0.10.0'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://heanet.dl.sourceforge.net/project/handbrake/0.10.0/HandBrake-0.10.0-x86_64-Win_GUI.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://netcologne.dl.sourceforge.net/project/handbrake/0.10.0/HandBrake-0.10.0-i686-Win_GUI.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\Handbrake\uninst.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
# alternative download URL 64-bit
# https://handbrake.fr/rotation.php?file=HandBrake-0.10.0-x86_64-Win_GUI.exe
# alternative download URL 32-bit
# https://handbrake.fr/rotation.php?file=HandBrake-0.10.0-i686-Win_GUI.exe
# Source: https://handbrake.fr