Difference between revisions of "GTK2 runtime"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(Update with newer version information.)
Line 9: Line 9:
 
    
 
    
 
</package>  
 
</package>  
 +
</source>
 +
 +
---
 +
 +
A newer version with the installer from [http://downloads.sourceforge.net/gtk-win/gtk2-runtime-2.14.3-2008-09-25-ash.exe?download gtk-win].
 +
 +
<source lang="xml">
 +
<package id="gtk2" name="GTK2 runtime" revision="1" reboot="false" priority="2" >
 +
<check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\GTK2-Runtime\lib\libgtk-win32-2.0-0.dll" value="2.14.3.0"/>
 +
 +
<install cmd='"%SOFTWARE%\gtk2-runtime-2.14.3-2008-09-25-ash.exe" /S' />
 +
<remove cmd='"%PROGRAMFILES%\GTK2-Runtime\gtk2_runtime_uninst.exe" /S' />
 +
 +
</package>
 
</source>
 
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 08:31, 10 October 2008

This is a silent installer and uninstaller for the GTK2 runtime available from the GladeWin project:

<package id="gtk" name="GTK2 runtime" revision="1" reboot="false" priority="3" >
 <check type="uninstall" condition="exists" path="GTK+ 2.8.18-1 runtime environment" />
 
 <install cmd='"%SOFTWARE%\gtk2\gtk+-2.8.18-setup-1.exe" /SP- /VERYSILENT /NORESTART' />
 <remove cmd='"%CommonProgramFiles%"\GTK\2.0\unins000.exe" /SILENT' />
  
</package>

---

A newer version with the installer from gtk-win.

<package id="gtk2" name="GTK2 runtime" revision="1" reboot="false" priority="2" >
 <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\GTK2-Runtime\lib\libgtk-win32-2.0-0.dll" value="2.14.3.0"/>
 
 <install cmd='"%SOFTWARE%\gtk2-runtime-2.14.3-2008-09-25-ash.exe" /S' />
 <remove cmd='"%PROGRAMFILES%\GTK2-Runtime\gtk2_runtime_uninst.exe" /S' />
 
</package>