Difference between revisions of "PDFTK Builder"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (added missing quotes)
(Update to 3.6)
Line 4: Line 4:
  
 
<source lang="xml">
 
<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
+
<package   
+
  id="pdftkbuilder"  
<packages>
+
  name="PDFTK Builder"
<package   
+
  revision="3.6"
id="pdftkbuilder"  
+
  priority="0"
name="PDFTK Builder 3.5.3"  
+
  reboot="false">
revision="353"  
+
priority="0"  
+
reboot="false"
+
+
<check type="uninstall" condition="exists" path="PDFTK Builder 3.5.3" />
+
<install cmd='"%SOFTWARE%\pdftkbuilder\pdftkb_setup.exe" /verysilent' />
+
<upgrade cmd='"%SOFTWARE%\pdftkbuilder\pdftkb_setup.exe" /verysilent' />
+
<remove cmd='"%PROGRAMFILES%\PDFTK Builder\unins000.exe" /verysilent /norestart'/>
+
</package>
+
</packages>
+
  
 +
  <variable name="version" value="3.6" />
 +
 +
  <check type="uninstall" condition="exists" path="PDFTK Builder %version%" />
 +
  <install cmd='"%SOFTWARE%\pdftkbuilder\pdftkb_setup.exe" /verysilent' />
 +
  <upgrade cmd='"%SOFTWARE%\pdftkbuilder\pdftkb_setup.exe" /verysilent' />
 +
  <remove cmd='"%PROGRAMFILES%\PDFTK Builder\unins000.exe" /verysilent /norestart'/>
 +
</package>
 
</source>
 
</source>
  

Revision as of 17:47, 24 March 2011

PDFTK Builder is a nifty little PDF utility if you don't have or don't want a full blown Adobe Acrobat just for collating, splitting, rotating, stamping and password settings in PDF files. It is a frontend to pdftk (but does not need to have pdftk itself beeing installed).

PDFTK Builder home: http://angusj.com/pdftkb/

<package   
  id="pdftkbuilder" 
  name="PDFTK Builder"
  revision="3.6"
  priority="0"
  reboot="false">

  <variable name="version" value="3.6" />

  <check type="uninstall" condition="exists" path="PDFTK Builder %version%" />
  <install cmd='"%SOFTWARE%\pdftkbuilder\pdftkb_setup.exe" /verysilent' />
  <upgrade cmd='"%SOFTWARE%\pdftkbuilder\pdftkb_setup.exe" /verysilent' />
  <remove cmd='"%PROGRAMFILES%\PDFTK Builder\unins000.exe" /verysilent /norestart'/>
</package>

PDFTK Builder seems to use Inno Setup.