Difference between revisions of "Blender"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: This is a silent installer and uninstaller for Blender, a open source 3D modeling problem. The package below works for v2.43 but will NOT work for versions 2.44-2.47 due to a [https://pro...)
(No difference)

Revision as of 01:59, 29 September 2008

This is a silent installer and uninstaller for Blender, a open source 3D modeling problem.

The package below works for v2.43 but will NOT work for versions 2.44-2.47 due to a bug in the install script used by Blender which causes it to prompt for user input even thought it was launched silent mode.

The uninstaller has the same problem too even for v2.43, but at least the installer works.

Note that it needs the Visual C++ 2005 Redistributable.

packages.xml

<package
  id="blender"
  name="Blender"
  revision="1"
  reboot="false"
  priority="0">
  <depends package-id="vc2005-redist"/>
  <check type="file" condition="exists" path="%PROGRAMFILES%\Blender Foundation\Blender\blender.exe" />
  <install cmd='"%SOFTWARE%\blender\blender-2.43-windows.exe" /S' />
  <upgrade cmd='"%SOFTWARE%\blender\blender-2.43-windows.exe" /S' />
  <remove cmd='"%ProgramFiles%\Blender Foundation\Blender\Uninstall.exe" /S' />

</package>