Audacity

From WPKG | Open Source Software Deployment and Distribution

Jump to: navigation, search

Audacity is an audio editor. This is a silent installer and uninstaller for Audacity (1.2 series).

[edit] Packaging For Audacity

<?xml version="1.0" encoding="UTF-8"?>
<packages>
    <package
        id="audacity"
        name="Audacity"
        revision="2"
        reboot="false"
        priority="0">
 
        <check type="uninstall" condition="exists" path="Audacity 1.2.6" />
 
        <install cmd='%SOFTWARE%\audacity\audacity-win-1.2.6.exe /sp- /silent /norestart' />
 
        <remove  cmd='%PROGRAMFILES%\Audacity\unins000.exe /silent' />
 
    </package>
</packages>

[edit] Packaging For Audacity with LAME

If you want to use LAME encoder (for MP3), copy lame-3.96.1 to %SOFTWARE%\audacity\.

Then, the audacity.xml file should look like this:

<?xml version="1.0" encoding="UTF-8"?>
 
<packages>
 
    <package
        id="audacity"
        name="audacity + lame"
        revision="2"
        priority="1">
 
        <check type="uninstall" condition="exists" path="Audacity 1.2.6" />
 
        <install cmd='%SOFTWARE%\audacity\audacity-win-1.2.6.exe /sp- /verysilent /norestart' />
        <install cmd='cmd /C xcopy "%SOFTWARE%\audacity\lame-3.96.1" "%PROGRAMFILES%\Audacity\lame-3.96.1\" /S /E /Y /Q' />
 
 
	<remove  cmd='"%PROGRAMFILES%\Audacity\unins000.exe" /verysilent' />
 
        <upgrade cmd='%SOFTWARE%\audacity\audacity-win-1.2.6.exe /sp- /verysilent /norestart' />
        <upgrade cmd='cmd /C xcopy "%SOFTWARE%\audacity\lame-3.96.1" "%PROGRAMFILES%\Audacity\lame-3.96.1\" /S /E /Y /Q' />
 
    </package>
 
</packages>

[edit] Installer type

Audacity uses Inno Setup.

Retrieved from "http://wpkg.org/Audacity"
Personal tools