Difference between revisions of "Spark"
From WPKG | Open Source Software Deployment and Distribution
m (sp) |
(Tidyup) |
||
Line 1: | Line 1: | ||
− | + | Spark is a "Cross-platform real-time collaboration client optimized for business and organizations". Spark is Open Source, available from http://www.igniterealtime.org/projects/spark/. | |
− | + | =WPKG Installer= | |
− | This | + | This installer: |
− | + | * Uninstalls an already installed version of Spark. | |
− | + | * Assumes you are using the "Offline installation, includes Java JRE" rather than the "Online installation, does not include Java JRE". | |
− | + | * Requires an MSI installer rather than a .exe installer [though these are possibly no longer available, see http://www.igniterealtime.org/community/thread/40710]. | |
− | + | ||
− | + | ||
− | + | ||
+ | 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/ | ||
<source lang="xml"> | <source lang="xml"> | ||
Line 30: | Line 28: | ||
id="spark" | id="spark" | ||
name="Spark" | name="Spark" | ||
− | revision=" | + | revision="3" |
reboot="false" | reboot="false" | ||
priority="0"> | priority="0"> | ||
<check type="uninstall" condition="exists" path="Spark" /> | <check type="uninstall" condition="exists" path="Spark" /> | ||
− | <install cmd='msiexec /qn /i %SOFTWARE%\spark\ | + | <install cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_8.msi' /> |
− | <upgrade cmd='msiexec /qn /i %SOFTWARE%\spark\ | + | <upgrade cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_8.msi' /> |
− | <remove cmd='msiexec /qn /x %SOFTWARE%\spark\ | + | <remove cmd='msiexec /qn /x %SOFTWARE%\spark\spark_2_5_8.msi' /> |
</package> | </package> | ||
</packages> | </packages> |
Revision as of 10:31, 11 May 2010
Spark is a "Cross-platform real-time collaboration client optimized for business and organizations". Spark is Open Source, available from http://www.igniterealtime.org/projects/spark/.
WPKG Installer
This installer:
- Uninstalls an already installed version of Spark.
- Assumes you are using the "Offline installation, includes Java JRE" rather than the "Online installation, does not include Java JRE".
- Requires an MSI installer rather than a .exe installer [though these are possibly no longer available, see http://www.igniterealtime.org/community/thread/40710].
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/
<?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="3"
reboot="false"
priority="0">
<check type="uninstall" condition="exists" path="Spark" />
<install cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_8.msi' />
<upgrade cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_8.msi' />
<remove cmd='msiexec /qn /x %SOFTWARE%\spark\spark_2_5_8.msi' />
</package>
</packages>