Difference between revisions of "Geany"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 7: Line 7:
 
         id="geany"
 
         id="geany"
 
         name="Geany Source Code Editor"
 
         name="Geany Source Code Editor"
         revision="016"
+
         revision="0.18"
 
         reboot="false"
 
         reboot="false"
 
         priority="1">
 
         priority="1">
         <check type="uninstall" condition="exists" path="Geany 0.16" />
+
         <check type="uninstall" condition="exists" path="Geany 0.18" />
  
         <install cmd='%COMSPEC% /c start "Installer" /min /wait "%SOFTWARE%\geany\geany-0.16_setup.exe" /S' />
+
         <install cmd='%COMSPEC% /c start "Installer" /min /wait "%SOFTWARE%\geany\geany-0.18_setup.exe" /S' />
         <!-- Pause for 3 seconds -->
+
         <!-- Pause for 5 seconds -->
         <install cmd='%COMSPEC% /c ping -n 3 localhost' />
+
         <install cmd='%COMSPEC% /c ping -n 5 localhost' />
         <install cmd='%COMSPEC% /c del /q /s "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Geany.lnk"' />
+
         <install cmd='%COMSPEC% /c del /q /s "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Geany.lnk"'><exit code="1" /></install>
         <install cmd='%COMSPEC% /c del /q /s "%ALLUSERSPROFILE%\Desktop\Geany.lnk"' />
+
         <install cmd='%COMSPEC% /c del /q /s "%ALLUSERSPROFILE%\Desktop\Geany.lnk"'><exit code="1" /></install>
  
         <upgrade cmd='%COMSPEC% /c start "Installer" /min /wait "%SOFTWARE%\geany\geany-0.16_setup.exe" /S' />
+
         <upgrade cmd='%COMSPEC% /c start "Installer" /min /wait "%SOFTWARE%\geany\geany-0.18_setup.exe" /S' />
         <!-- Pause for 3 seconds -->
+
         <!-- Pause for 5 seconds -->
         <upgrade cmd='%COMSPEC% /c ping -n 3 localhost' />
+
         <upgrade cmd='%COMSPEC% /c ping -n 5 localhost' />
         <upgrade cmd='%COMSPEC% /c del /q /s "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Geany.lnk"' />
+
         <upgrade cmd='%COMSPEC% /c del /q /s "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Geany.lnk"'><exit code="1" /></upgrade>
         <upgrade cmd='%COMSPEC% /c del /q /s "%USERPROFILE%\Desktop\Geany.lnk"' />
+
         <upgrade cmd='%COMSPEC% /c del /q /s "%ALLUSERSPROFILE%\Desktop\Geany.lnk"'><exit code="1" /></upgrade>
  
 
         <remove cmd='%COMSPEC% /c start "Uninstaller" /min /wait "%PROGRAMFILES%\Geany\uninst.exe" /S' />
 
         <remove cmd='%COMSPEC% /c start "Uninstaller" /min /wait "%PROGRAMFILES%\Geany\uninst.exe" /S' />

Revision as of 16:03, 24 September 2009

Silent installer for Geany, a source code editor using GTK+. http://www.geany.org/

<?xml version="1.0" encoding="UTF-8"?>
<packages>
    <package
        id="geany"
        name="Geany Source Code Editor"
        revision="0.18"
        reboot="false"
        priority="1">
        <check type="uninstall" condition="exists" path="Geany 0.18" />

        <install cmd='%COMSPEC% /c start "Installer" /min /wait "%SOFTWARE%\geany\geany-0.18_setup.exe" /S' />
        <!-- Pause for 5 seconds -->
        <install cmd='%COMSPEC% /c ping -n 5 localhost' />
        <install cmd='%COMSPEC% /c del /q /s "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Geany.lnk"'><exit code="1" /></install>
        <install cmd='%COMSPEC% /c del /q /s "%ALLUSERSPROFILE%\Desktop\Geany.lnk"'><exit code="1" /></install>

        <upgrade cmd='%COMSPEC% /c start "Installer" /min /wait "%SOFTWARE%\geany\geany-0.18_setup.exe" /S' />
        <!-- Pause for 5 seconds -->
        <upgrade cmd='%COMSPEC% /c ping -n 5 localhost' />
        <upgrade cmd='%COMSPEC% /c del /q /s "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Geany.lnk"'><exit code="1" /></upgrade>
        <upgrade cmd='%COMSPEC% /c del /q /s "%ALLUSERSPROFILE%\Desktop\Geany.lnk"'><exit code="1" /></upgrade>

        <remove cmd='%COMSPEC% /c start "Uninstaller" /min /wait "%PROGRAMFILES%\Geany\uninst.exe" /S' />
        <!-- Pause for 10 seconds -->
        <remove cmd='%COMSPEC% /c ping -n 10 localhost' />
    </package>
</packages>