Difference between revisions of "Spark"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
− | 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: [http://www.igniterealtime.org/projects/spark/index.jsp] | 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. | ||
+ | |||
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: [http://resources.ej-technologies.com/install4j/help/doc/] | Options for Install4j (silent uninstall) can be found at: [http://resources.ej-technologies.com/install4j/help/doc/] | ||
− | For the new install | + | For the new install the MSI-Package was used. |
− | < | + | <source lang="xml"> |
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<packages> | <packages> | ||
Line 24: | Line 26: | ||
<install cmd='%PROGRAMFILES%\Spark\uninstall.exe -q' /> | <install cmd='%PROGRAMFILES%\Spark\uninstall.exe -q' /> | ||
</package> | </package> | ||
+ | |||
<package | <package | ||
id="spark" | id="spark" | ||
Line 36: | Line 39: | ||
</package> | </package> | ||
</packages> | </packages> | ||
− | + | </source> | |
− | + | ||
− | </ | + | |
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
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: [1]
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: [2]
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>