Difference between revisions of "Adobe Air"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Updated version numbers for 2.04)
(Updated to version 2.5.1 and removed version 1.5 since the only difference between packages is the version number.)
Line 5: Line 5:
 
Adobe Air is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe]
 
Adobe Air is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe]
  
== EXE installer ==
+
== Adobe AIR 2.5 ==
== Adobe Air 2.0 ==
+
All versions of Adobe AIR (1.0 through 2.5.1) check the same DLL file for the version number.  Just change the value with the version you are installing.
 +
 
 
<source lang="xml">
 
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
 +
 +
<packages>
  
<packages>
 
 
<package id="adobeair"
 
<package id="adobeair"
 
name="Adobe AIR"
 
name="Adobe AIR"
revision="204"
+
revision="%version%"
 
priority="10">
 
priority="10">
+
 
 +
<variable name="version" value="2.5.1.17730" />
 +
 
 
<check type="uninstall" condition="exists" path="Adobe AIR" />
 
<check type="uninstall" condition="exists" path="Adobe AIR" />
<check type='logical' condition='or'>
+
<check type='logical' condition='or'>
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="2.0.4.13090" />
+
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="%version%" />
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="2.0.4.13090" />
+
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="%version%" />
 
</check>
 
</check>
+
 
 
<install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
 
<install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
+
 
 
<upgrade cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
 
<upgrade cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
+
 
 
<remove cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
 
<remove cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
 
</package>
 
</package>
  
</packages>
 
</source>
 
 
== Adobe Air 1.5 ==
 
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
 
<packages>
 
<package id="AdobeAIR"
 
name="Adobe AIR"
 
revision="1.5.1"
 
priority="10">
 
 
<check type="uninstall" condition="exists" path="Adobe AIR" />
 
<check type='logical' condition='or'>
 
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="1.5.1.8210" />
 
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="1.5.1.8210" />
 
</check>
 
 
<install cmd='%SOFTWARE%\AdobeAIR\AdobeAIRInstaller.exe -silent' />
 
 
<upgrade cmd='%SOFTWARE%\AdobeAIR\AdobeAIRInstaller.exe -silent' />
 
 
<remove cmd='%SOFTWARE%\AdobeAIR\AdobeAIRInstaller.exe -uninstall' />
 
</package>
 
 
</packages>
 
</packages>
 
</source>
 
</source>

Revision as of 01:30, 18 November 2010

Silent installer for Adobe Air.

Download

Adobe Air is available from Adobe

Adobe AIR 2.5

All versions of Adobe AIR (1.0 through 2.5.1) check the same DLL file for the version number. Just change the value with the version you are installing.

<?xml version="1.0" encoding="UTF-8"?>
 
<packages>

	<package id="adobeair"
		name="Adobe AIR"
		revision="%version%"
		priority="10">

		<variable name="version" value="2.5.1.17730" />

		<check type="uninstall" condition="exists" path="Adobe AIR" />
		<check type='logical' condition='or'>
			<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="%version%" />
			<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="%version%" />
		</check>

		<install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />

		<upgrade cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />

		<remove cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
	</package>

</packages>