Difference between revisions of "Jedit"
From WPKG | Open Source Software Deployment and Distribution
m (Typo: removed a double quote which broke syntax.) |
m |
||
Line 12: | Line 12: | ||
<depends package-id="java runtime environment" /> | <depends package-id="java runtime environment" /> | ||
<check type="uninstall" condition="exists" path="jEdit 4.2" /> | <check type="uninstall" condition="exists" path="jEdit 4.2" /> | ||
− | <install cmd="%SOFTWARE%\jedit\jedit4sinstall.exe /s- /silent /norestart | + | <install cmd='"%SOFTWARE%\jedit\jedit4sinstall.exe" /s- /silent /norestart' /> |
− | <update cmd="%SOFTWARE%\jedit\jedit4sinstall.exe /s- /silent /norestart | + | <update cmd='"%SOFTWARE%\jedit\jedit4sinstall.exe" /s- /silent /norestart' /> |
− | <remove cmd="%PROGRAMFILES%\jEdit\unins000.exe /sp- /silent /norestart | + | <remove cmd='"%PROGRAMFILES%\jEdit\unins000.exe" /sp- /silent /norestart' /> |
</package> | </package> | ||
</source> | </source> | ||
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Revision as of 10:32, 18 February 2008
This is a silent installer and uninstaller for jEdit.
jEdit is a Java based code editor, hence the dependency check for Java.
<package
id="jedit"
name="jEdit"
revision="1"
reboot="false"
priority="1">
<depends package-id="java runtime environment" />
<check type="uninstall" condition="exists" path="jEdit 4.2" />
<install cmd='"%SOFTWARE%\jedit\jedit4sinstall.exe" /s- /silent /norestart' />
<update cmd='"%SOFTWARE%\jedit\jedit4sinstall.exe" /s- /silent /norestart' />
<remove cmd='"%PROGRAMFILES%\jEdit\unins000.exe" /sp- /silent /norestart' />
</package>