Difference between revisions of "Spark"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
This is a silent installer for Spark. Spark is an Open Source, cross-platform XMMP Client. | This is a silent installer for Spark. Spark is an Open Source, cross-platform XMMP Client. | ||
− | Spark Download Page: | + | Spark Download Page: http://www.igniterealtime.org/projects/spark/index.jsp |
This xml uninstalls an already installed Spark version. | This xml uninstalls an already installed Spark version. | ||
Line 7: | Line 7: | ||
The installed version was 2.5.0 (installed by the install4j installer). | The installed version was 2.5.0 (installed by the install4j installer). | ||
− | Options for Install4j (silent uninstall) can be found at: | + | Options for Install4j (silent uninstall) can be found at: http://resources.ej-technologies.com/install4j/help/doc/ |
For the new install the MSI-Package was used. | For the new install the MSI-Package was used. |
Revision as of 20:27, 18 April 2008
This is a silent installer for Spark. Spark is an Open Source, cross-platform XMMP Client.
Spark Download Page: http://www.igniterealtime.org/projects/spark/index.jsp
This xml uninstalls an already installed Spark version.
The installed version was 2.5.0 (installed by the install4j installer).
Options for Install4j (silent uninstall) can be found at: http://resources.ej-technologies.com/install4j/help/doc/
For the new install the MSI-Package was used.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="spark250-uninstall"
name="Uninstall: Spark 2.5.0 XMMP-Client"
revision="1"
reboot="false"
priority="5">
<check type="logical" condition="not">
<check type="file" condition="exists" path="%PROGRAMFILES%\Spark\uninstall.exe" />
</check>
<install cmd='%PROGRAMFILES%\Spark\uninstall.exe -q' />
</package>
<package
id="spark"
name="Spark"
revision="2"
reboot="false"
priority="0">
<check type="uninstall" condition="exists" path="Spark" />
<install cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_7.msi' />
<upgrade cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_7.msi' />
<remove cmd='msiexec /qn /x %SOFTWARE%\spark\spark_2_5_7.msi' />
</package>
</packages>