Geany

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search

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

<?xml version="1.0" encoding="UTF-8"?>
<packages:packages xmlns:packages="http://www.wpkg.org/packages" xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wpkg.org/packages xsd/packages.xsd">
	 <package id="geany" name="Geany Source Code Editor" revision="%version%" reboot="false" priority="1">
	 <variable name="version" value="1.33" />
		
        <check type="uninstall" condition="exists" path="Geany %version%" />

        <install cmd='"%SOFTWARE%\geany\geany-%version%_setup.exe" /S' />
        <install cmd='%COMSPEC% /c del /q /s "%ALLUSERSPROFILE%\Desktop\Geany.lnk"'><exit code="1" /></install>

        <upgrade include="install" />

        <remove cmd='"%PROGRAMFILES%\Geany\uninst.exe" /S' architecture="x86" />
	<remove cmd='"%PROGRAMFILES(x86)%\Geany\uninst.exe" /S' architecture="x64" />
    </package>
</packages:packages>