Difference between revisions of "ScreenshotCaptor"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New package)
(No difference)

Revision as of 19:18, 28 August 2012

A donationware tool for grabbing, manipulating, annotating, and sharing screenshots www.donationcoder.com

Inno Setup package.xml

This package should work for both Windows XP (32bit) and Windows 7 (32 and 64bit).

<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id='screencaptor' 
        name='Screenshot Captor' 
        revision='%PKG_FILEVERSION%'
        priority='10' 
        reboot='false' >

    <variable name="PKG_VERSION"    value="3.08.01" />
    <variable name="PKG_DESTINATION"    value="%PROGRAMFILES%" architecture="x86" />
    <variable name="PKG_DESTINATION"    value="%PROGRAMFILES(x86)%" architecture="x64" />

    <check type='uninstall' condition='exists' path='Screenshot Captor %PKG_VERSION%' />

    <install cmd='"%SOFTWARE%\ScreenCaptor\ScreenshotCaptorSetup.exe" /silent' timeout="600" />

    <upgrade include="remove" />
    <upgrade include="install" />

    <remove cmd='"%PKG_DESTINATION%/ScreenshotCaptor/unins000.exe" /VERYSILENT' />
</package>
</packages>