Difference between revisions of "Synfig"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Added Synfig configuration)
 
m (Included source tag)
Line 1: Line 1:
 
Synfig Studio is an open source 2D vector animation program. It is available from http://synfig.org/ . It uses the NSIS installer.  
 
Synfig Studio is an open source 2D vector animation program. It is available from http://synfig.org/ . It uses the NSIS installer.  
  
 +
 +
 +
<source lang="xml">
 
<packages>
 
<packages>
<package
+
  <package
  id="Synfig"
+
    id="Synfig"
  name="Synfig Studio"
+
    name="Synfig Studio"
  revision="%version%"
+
    revision="%version%"
  reboot="false"
+
    reboot="false"
  priority="20">
+
    priority="20">
 
   
 
   
  <variable name="version" value="0.64.0" />
+
    <variable name="version" value="0.64.0" />
  
  <check type="uninstall" condition="exists" path="Synfig Studio" />
+
    <check type="uninstall" condition="exists" path="Synfig Studio" />
 
   
 
   
  <install cmd='"%SOFTWARE%\Synfig\synfigstudio-%version%.exe" /S ' />
+
    <install cmd='"%SOFTWARE%\Synfig\synfigstudio-%version%.exe" /S ' />
 
   
 
   
  <upgrade include="install" />
+
    <upgrade include="install" />
  
  <remove cmd='"%PROGRAMFILES%\Synfig\uninstall-synfigstudio.exe" /S ' >
+
    <remove cmd='"%PROGRAMFILES%\Synfig\uninstall-synfigstudio.exe" /S ' >
    <exit code="1" />
+
      <exit code="1" />
  </remove>
+
    </remove>
</package>
+
  </package>
 
</packages>
 
</packages>
 +
</source>

Revision as of 07:55, 20 October 2013

Synfig Studio is an open source 2D vector animation program. It is available from http://synfig.org/ . It uses the NSIS installer.


<packages>
  <package
    id="Synfig"
    name="Synfig Studio"
    revision="%version%"
    reboot="false"
    priority="20">
 
    <variable name="version" value="0.64.0" />

    <check type="uninstall" condition="exists" path="Synfig Studio" />
 
    <install cmd='"%SOFTWARE%\Synfig\synfigstudio-%version%.exe" /S ' />
 
    <upgrade include="install" />

    <remove cmd='"%PROGRAMFILES%\Synfig\uninstall-synfigstudio.exe" /S ' >
      <exit code="1" />  
    </remove>
  </package>
</packages>