Difference between revisions of "IZArc"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(Installer Package: add different package example)
Line 19: Line 19:
  
 
</package>
 
</package>
 +
</source>
 +
 +
Slightly different version, showing different options available.
 +
<source lang="xml">
 +
<package id="izarc"
 +
            name="IZArc Compression Tool"
 +
            revision="%PKG_VERSION%"
 +
            reboot="false"
 +
            priority="1">
 +
 +
        <variable name="PKG_VERSION"        value="4.1.6"/>
 +
        <variable name="PKG_SHORTNAME"      value="izarc"/>
 +
        <variable name="PKG_NAME"          value="IZArc"/>
 +
 +
        <check type="uninstall" condition="exists" path="%PKG_NAME% %PKG_VERSION%"/>
 +
 +
        <install cmd='%SOFTWARE%\%PKG_SHORTNAME%\%PKG_SHORTNAME%.exe /SILENT /NOCANDY /ArcTypes=ALL'/>
 +
 +
        <remove cmd='"C:\Program Files\IZArc\unins000.exe" /SILENT /NORESTART'/>
 +
        <remove cmd='%ComSpec% /c assoc .zip=CompressedFolder'/>
 +
    </package>
 
</source>
 
</source>
  

Revision as of 13:35, 24 July 2012

A free file compressor/extractor: www.izarc.org

Installer Package

<package
	 id="izarc"
         name="IZArc 4.1.2"
         revision="1"
         reboot="false"
         priority="10">

       <check type="uninstall" condition="exists" path="IZArc 4.1.2" />

       <install cmd='%SOFTWARE%\IZArc4.1.2.exe /SILENT /NOCANDY /Language="German" /ArcTypes="7z,a,ace,arc,arj,b64,bh,bz2,bza,cab,cpio,deb,enc,gca,gz,gza,ha,ize,lha,lib,lzh,mbf,nim,pak,pk3,rar,rpm,tar,taz,tbz,tgz,tz,uue"' />

       <upgrade cmd='%SOFTWARE%\IZArc4.1.2.exe /SILENT /NOCANDY /Language="German" /ArcTypes="7z,a,ace,arc,arj,b64,bh,bz2,bza,cab,cpio,deb,enc,gca,gz,gza,ha,ize,lha,lib,lzh,mbf,nim,pak,pk3,rar,rpm,tar,taz,tbz,tgz,tz,uue"' />

       <remove cmd='%PROGRAMFILES%\IZArc\unins000.exe /VERYSILENT' />

</package>

Slightly different version, showing different options available.

<package id="izarc"
            name="IZArc Compression Tool"
            revision="%PKG_VERSION%"
            reboot="false"
            priority="1">

        <variable name="PKG_VERSION"        value="4.1.6"/>
        <variable name="PKG_SHORTNAME"      value="izarc"/>
        <variable name="PKG_NAME"           value="IZArc"/>

        <check type="uninstall" condition="exists" path="%PKG_NAME% %PKG_VERSION%"/>

        <install cmd='%SOFTWARE%\%PKG_SHORTNAME%\%PKG_SHORTNAME%.exe /SILENT /NOCANDY /ArcTypes=ALL'/>

        <remove cmd='"C:\Program Files\IZArc\unins000.exe" /SILENT /NORESTART'/>
        <remove cmd='%ComSpec% /c assoc .zip=CompressedFolder'/>
    </package>

Links