Pointofix

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search

Pointofix is a screen annotating/drawing freeware, closed to Screen Maker or Interwrite, but very light. See http://www.pointofix.de/

Silent install

By default, it's in german. To installing a translation, you have to rename the right pointofix_translation_XX.ini to pointofix_translation.ini and put it with the installer.

<?xml version="1.0" encoding="UTF-8"?>
<packages:packages
        xmlns:packages="http://www.wpkg.org/packages" xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.wpkg.org/packages ../../xsd/packages.xsd" >

  <package
    id="pointofix"
    name="Pointofix"
    revision="%VERSION%"
    reboot="false"
    priority="30">

    <variable name="VERSION"  value="1.7" />
    <variable name="PKG_DEST" value="%ProgramFiles%\Pointofix" />
    <check type="file" condition="exists" path="%PKG_DEST%\unins000.exe" />

    <install cmd='"%SOFTWARE%\pointofix_%VERSION%.exe" /VERYSILENT /NORESTART ' />
    <install cmd='%ComSpec% /c copy /V /Y /B "%SOFTWARE%\pointofix_translation.ini" "%PKG_DEST%"' />
    <upgrade include="install" />

    <remove cmd='"%PKG_DEST%\unins000.exe" /VERYSILENT' />
    <remove cmd='%ComSpec% /c if exist "%PKG_DEST%" rmdir /s /q "%PKG_DEST%"' />
    </package>
</packages:packages>