Difference between revisions of "IZArc"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Installer Package: add different package example)
(Installer Package: add explanation)
 
Line 21: Line 21:
 
</source>
 
</source>
  
Slightly different version, showing different options available.
+
Slightly different version, showing different options available (and reinstate zip file association on uninstall).
 
<source lang="xml">
 
<source lang="xml">
 
<package id="izarc"
 
<package id="izarc"

Latest revision as of 13:36, 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 (and reinstate zip file association on uninstall).

<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