forked from asjimene/CMPackager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGit.xml
146 lines (146 loc) · 6.68 KB
/
Git.xml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<ApplicationDef>
<Application>
<Name>Git</Name>
<Description>Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance. Free and Open Source Software</Description>
<Publisher>Software Freedom Conservancy</Publisher>
<AutoInstall>True</AutoInstall>
<UserDocumentation>https://git-scm.com/</UserDocumentation>
<Icon>Git.ico</Icon>
</Application>
<Downloads>
<Download DeploymentType="DeploymentType1">
<PrefetchScript>$URL = (((Invoke-WebRequest https://git-scm.com/download/win).Links) | where -Property OuterText -EQ "64-bit Git for Windows Setup").href
$Download.Version = if ($URL -replace '\.windows' -match "\d+\.\d+\.\d+(\.\d+)?") {$matches[0]}
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
write-output $URL</PrefetchScript>
<URL></URL>
<DownloadFileName>Git-x64.exe</DownloadFileName>
<Version></Version>
<FullVersion></FullVersion>
<DownloadVersionCheck>$Version = ((Get-item $TempDir\$DownloadFileName).VersionInfo.FileVersion).TrimStart().TrimEnd()</DownloadVersionCheck>
<AppRepoFolder>x64</AppRepoFolder>
<ExtraCopyFunctions>if (Test-Path $ScriptRoot\ExtraFiles\git.inf) {
Copy-Item -Path $ScriptRoot\ExtraFiles\git.inf -Destination $DestinationPath
$AssociatedDeploymentType = $Recipe.ApplicationDef.DeploymentTypes.DeploymentType | Where-Object Name -eq $Download.DeploymentType
$AssociatedDeploymentType.InstallProgram += ' /LOADINF="git.inf"'
}</ExtraCopyFunctions>
</Download>
<Download DeploymentType="DeploymentType2">
<PrefetchScript>$URL = (((Invoke-WebRequest https://git-scm.com/download/win).Links) | where -Property OuterText -EQ "32-bit Git for Windows Setup").href
$Download.Version = if ($URL -replace '\.windows' -match "\d+\.\d+\.\d+(\.\d+)?") {$matches[0]}
</PrefetchScript>
<URL></URL>
<DownloadFileName>Git-x86.exe</DownloadFileName>
<Version></Version>
<FullVersion></FullVersion>
<DownloadVersionCheck>$Version = ((Get-item $TempDir\$DownloadFileName).VersionInfo.FileVersion).TrimStart().TrimEnd()</DownloadVersionCheck>
<AppRepoFolder>x86</AppRepoFolder>
<ExtraCopyFunctions>if (Test-Path $ScriptRoot\ExtraFiles\git.inf) {
Copy-Item -Path $ScriptRoot\ExtraFiles\git.inf -Destination $DestinationPath
$AssociatedDeploymentType = $Recipe.ApplicationDef.DeploymentTypes.DeploymentType | Where-Object Name -eq $Download.DeploymentType
$AssociatedDeploymentType.InstallProgram += ' /LOADINF="git.inf"'
}</ExtraCopyFunctions>
</Download>
</Downloads>
<DeploymentTypes>
<DeploymentType Name="DeploymentType1">
<DeploymentTypeName>Git x64</DeploymentTypeName>
<InstallationType>Script</InstallationType>
<CacheContent>False</CacheContent>
<BranchCache>True</BranchCache>
<ContentFallback>True</ContentFallback>
<OnSlowNetwork>Download</OnSlowNetwork>
<InstallProgram>Git-x64.exe /VERYSILENT /NORESTART</InstallProgram>
<UninstallCmd>"%ProgramFiles%\Git\unins000.exe" /VERYSILENT</UninstallCmd>
<UninstallOption>NoneRequired</UninstallOption>
<InstallationBehaviorType>InstallForSystem</InstallationBehaviorType>
<LogonReqType>WhetherOrNotUserLoggedOn</LogonReqType>
<UserInteractionMode>Hidden</UserInteractionMode>
<EstRuntimeMins>10</EstRuntimeMins>
<MaxRuntimeMins>30</MaxRuntimeMins>
<RebootBehavior>BasedOnExitCode</RebootBehavior>
<DetectionMethodType>Custom</DetectionMethodType>
<CustomDetectionMethods>
<DetectionClause>
<DetectionClauseType>File</DetectionClauseType>
<Name>git-cmd.exe</Name>
<Path>%ProgramFiles%\Git\</Path>
<PropertyType>Version</PropertyType>
<ExpectedValue>$Version</ExpectedValue>
<ExpressionOperator>GreaterEquals</ExpressionOperator>
<Value>True</Value>
</DetectionClause>
</CustomDetectionMethods>
<InstallBehavior>
<InstallBehaviorProcess DisplayName="git">
<InstallBehaviorExe>git.exe</InstallBehaviorExe>
</InstallBehaviorProcess>
<InstallBehaviorProcess DisplayName="git bash">
<InstallBehaviorExe>git-bash.exe</InstallBehaviorExe>
</InstallBehaviorProcess>
<InstallBehaviorProcess DisplayName="git cmd">
<InstallBehaviorExe>git-cmd.exe</InstallBehaviorExe>
</InstallBehaviorProcess>
</InstallBehavior>
<RequirementsRules>
<RequirementsRule>
<RequirementsRuleType>Existential</RequirementsRuleType>
<RequirementsRuleValue>
<RuleValue>True</RuleValue>
</RequirementsRuleValue>
<RequirementsRuleGlobalCondition>AutoPackage - OSArchitecture x64</RequirementsRuleGlobalCondition>
</RequirementsRule>
</RequirementsRules>
</DeploymentType>
<DeploymentType Name="DeploymentType2">
<DeploymentTypeName>Git x86</DeploymentTypeName>
<InstallationType>Script</InstallationType>
<CacheContent>False</CacheContent>
<BranchCache>True</BranchCache>
<ContentFallback>True</ContentFallback>
<OnSlowNetwork>Download</OnSlowNetwork>
<InstallProgram>Git-x86.exe /VERYSILENT /NORESTART</InstallProgram>
<UninstallCmd>"%ProgramFiles(x86)%\Git\unins000.exe" /VERYSILENT</UninstallCmd>
<UninstallOption>NoneRequired</UninstallOption>
<InstallationBehaviorType>InstallForSystem</InstallationBehaviorType>
<LogonReqType>WhetherOrNotUserLoggedOn</LogonReqType>
<UserInteractionMode>Hidden</UserInteractionMode>
<EstRuntimeMins>10</EstRuntimeMins>
<MaxRuntimeMins>30</MaxRuntimeMins>
<RebootBehavior>BasedOnExitCode</RebootBehavior>
<DetectionMethodType>Custom</DetectionMethodType>
<CustomDetectionMethods>
<DetectionClause>
<DetectionClauseType>File</DetectionClauseType>
<Name>git-cmd.exe</Name>
<Path>%ProgramFiles(x86)%\Git\</Path>
<PropertyType>Version</PropertyType>
<ExpectedValue>$Version</ExpectedValue>
<ExpressionOperator>GreaterEquals</ExpressionOperator>
<Value>True</Value>
</DetectionClause>
</CustomDetectionMethods>
<InstallBehavior>
<InstallBehaviorProcess DisplayName="git">
<InstallBehaviorExe>git.exe</InstallBehaviorExe>
</InstallBehaviorProcess>
<InstallBehaviorProcess DisplayName="git bash">
<InstallBehaviorExe>git-bash.exe</InstallBehaviorExe>
</InstallBehaviorProcess>
<InstallBehaviorProcess DisplayName="git cmd">
<InstallBehaviorExe>git-cmd.exe</InstallBehaviorExe>
</InstallBehaviorProcess>
</InstallBehavior>
</DeploymentType>
</DeploymentTypes>
<Distribution>
<DistributeContent>True</DistributeContent>
</Distribution>
<Supersedence>
<Supersedence>True</Supersedence>
<Uninstall>False</Uninstall>
</Supersedence>
<Deployment>
<DeploySoftware>True</DeploySoftware>
</Deployment>
</ApplicationDef>