Difference between revisions of "WinMerge"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(2.6.12.0-> 2.8.2)
Line 11: Line 11:
 
<packages>
 
<packages>
  
<package id='WinMerge' name='WinMerge' revision='26120' priority='50' reboot='false' >
+
<package  
   <check type='uninstall' condition='exists' path='WinMerge 2.6.12.0' />
+
    id='WinMerge'  
   <install cmd='"%SOFTWARE%\WinMerge v.2.6.12.0\unattended.cmd"' />
+
    name='WinMerge'  
   <remove cmd='"%SOFTWARE%\WinMerge v.2.6.12.0\unattended-uninstall.cmd"' />
+
    revision='28020'  
   <upgrade cmd='"%SOFTWARE%\WinMerge v.2.6.12.0\unattended.cmd"' />
+
    priority='50'  
 +
    reboot='false' >
 +
   <check type='uninstall' condition='exists' path='WinMerge 2.8.2' />
 +
   <install cmd='"%SOFTWARE%\WinMerge v.2.8.2\unattended.cmd"' />
 +
   <remove cmd='"%SOFTWARE%\WinMerge v.2.8.2\unattended-uninstall.cmd"' />
 +
   <upgrade cmd='"%SOFTWARE%\WinMerge v.2.8.2\unattended.cmd"' />
 
</package>
 
</package>
  
Line 29: Line 34:
 
echo Installing WinMerge
 
echo Installing WinMerge
  
set BINARY=WinMerge-2.6.12-Setup.exe
+
set BINARY=WinMerge-2.8.2-Setup.exe
 
set INSTALL_LOC=%~dp0
 
set INSTALL_LOC=%~dp0
  
Line 55: Line 60:
 
<packages>
 
<packages>
  
<package id='WinMerge' name='WinMerge' revision='26120' priority='50' reboot='false' >
+
<package  
   <check type='uninstall' condition='exists' path='WinMerge 2.6.12.0' />
+
    id='WinMerge'  
   <install cmd='"%SOFTWARE%\WinMerge v.2.6.12.0\WinMerge-2.6.12-Setup.exe" /VERYSILENT /SP- /NORESTART' />
+
    name='WinMerge'  
 +
    revision='28020'  
 +
    priority='50'  
 +
    reboot='false' >
 +
   <check type='uninstall' condition='exists' path='WinMerge 2.8.2' />
 +
   <install cmd='"%SOFTWARE%\WinMerge v.2.8.2\WinMerge-2.8.2-Setup.exe" /VERYSILENT /SP- /NORESTART' />
 
   <remove cmd='"%ProgramFiles%\WinMerge\unins000.exe" /VERYSILENT /SP- /NORESTART' />
 
   <remove cmd='"%ProgramFiles%\WinMerge\unins000.exe" /VERYSILENT /SP- /NORESTART' />
   <upgrade cmd='"%SOFTWARE%\WinMerge v.2.6.12.0\WinMerge-2.6.12-Setup.exe" /VERYSILENT /SP- /NORESTART"' />
+
   <upgrade cmd='"%SOFTWARE%\WinMerge v.2.8.2\WinMerge-2.8.2-Setup.exe" /VERYSILENT /SP- /NORESTART"' />
 
</package>
 
</package>
  

Revision as of 08:58, 17 June 2008

WinMerge

Silent install for WinMerge.

WinMerge is an Open Source visual text file differencing and merging tool for Win32 platforms. See WinMerge Homepage.

I am using the following unattended configuration:

<?xml version="1.0" encoding="utf-8" ?>
<packages>

<package 
    id='WinMerge' 
    name='WinMerge' 
    revision='28020' 
    priority='50' 
    reboot='false' >
  <check type='uninstall' condition='exists' path='WinMerge 2.8.2' />
  <install cmd='"%SOFTWARE%\WinMerge v.2.8.2\unattended.cmd"' />
  <remove cmd='"%SOFTWARE%\WinMerge v.2.8.2\unattended-uninstall.cmd"' />
  <upgrade cmd='"%SOFTWARE%\WinMerge v.2.8.2\unattended.cmd"' />
</package>

</packages>

As you can see I am using a command-script to install WinMerge. Here is the code of the two scripts:

unattended.cmd:

@echo off

echo Installing WinMerge

set BINARY=WinMerge-2.8.2-Setup.exe
set INSTALL_LOC=%~dp0

start /wait "WinMerge" "%INSTALL_LOC%%BINARY%" /VERYSILENT /SP- /NORESTART

unattended-uninstall.cmd:

@echo off

echo Removing WinMerge

set PROG_FILES=%ProgramFiles%
if not "%ProgramFiles(x86)%" == "" set PROG_FILES=%ProgramFiles(x86)%

start /wait "WinMerge" "%PROG_FILES%\WinMerge\unins000.exe" /VERYSILENT /SP- /NORESTART

As you can see I am using the unattended-uninstall.cmd script to support the %ProgramFiles(x86)% location on Windows x64 editions.

If you do not need to support x64 editions you might simply include the command lines within the XML file:

<?xml version="1.0" encoding="utf-8" ?>
<packages>

<package 
    id='WinMerge' 
    name='WinMerge' 
    revision='28020' 
    priority='50' 
    reboot='false' >
  <check type='uninstall' condition='exists' path='WinMerge 2.8.2' />
  <install cmd='"%SOFTWARE%\WinMerge v.2.8.2\WinMerge-2.8.2-Setup.exe" /VERYSILENT /SP- /NORESTART' />
  <remove cmd='"%ProgramFiles%\WinMerge\unins000.exe" /VERYSILENT /SP- /NORESTART' />
  <upgrade cmd='"%SOFTWARE%\WinMerge v.2.8.2\WinMerge-2.8.2-Setup.exe" /VERYSILENT /SP- /NORESTART"' />
</package>

</packages>