summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/resources/izpack-linux/install.xml
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-05-04 13:53:05 +0200
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-05-04 13:53:05 +0200
commit3b8e34f4ca992670ee3bd9fb84903034e7581974 (patch)
tree9a6f2b4ba90ae31ac5e3be9d3ea7dffc498e06e8 /pdf-over-gui/src/main/resources/izpack-linux/install.xml
parentf87649ba7280d9f05efa0c238eb9ef47a5a23424 (diff)
downloadpdf-over-3b8e34f4ca992670ee3bd9fb84903034e7581974.tar.gz
pdf-over-3b8e34f4ca992670ee3bd9fb84903034e7581974.tar.bz2
pdf-over-3b8e34f4ca992670ee3bd9fb84903034e7581974.zip
izpack 4 -> izpack 5
Diffstat (limited to 'pdf-over-gui/src/main/resources/izpack-linux/install.xml')
-rw-r--r--pdf-over-gui/src/main/resources/izpack-linux/install.xml25
1 files changed, 16 insertions, 9 deletions
diff --git a/pdf-over-gui/src/main/resources/izpack-linux/install.xml b/pdf-over-gui/src/main/resources/izpack-linux/install.xml
index ea22069d..1e95e93a 100644
--- a/pdf-over-gui/src/main/resources/izpack-linux/install.xml
+++ b/pdf-over-gui/src/main/resources/izpack-linux/install.xml
@@ -1,6 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
-<installation version="1.0">
+<izpack:installation version="5.0"
+ xmlns:izpack="http://izpack.org/schema/installation"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://izpack.org/schema/installation http://izpack.org/schema/5.0/izpack-installation-5.0.xsd">
<info>
<appname>PDF-Over</appname>
@@ -10,9 +13,10 @@
<author name="A-SIT (Secure Information Technology Center - Austria)" email="" />
</authors>
<url>http://www.a-sit.at/</url>
+ <pack-compression-format>gz</pack-compression-format>
</info>
- <guiprefs resizable="yes" width="500" height="360">
+ <guiprefs resizable="yes" width="700" height="360">
<modifier key="useFlags" value="yes" />
<modifier key="langDisplayType" value="native" />
</guiprefs>
@@ -30,9 +34,6 @@
<res id="Installer.image.0" src="a-sit-icon.png" />
</resources>
- <native type="izpack" name="ShellLink.dll" />
- <native type="izpack" name="ShellLink_x64.dll" />
-
<variables>
<variable name="DesktopShortcutCheckboxEnabled" value="true" />
</variables>
@@ -41,22 +42,28 @@
<panel classname="HelloPanel" />
<panel classname="TargetPanel" />
<panel classname="InstallPanel" />
- <panel classname="ShortcutPanel" />
+ <panel classname="ShortcutPanel" allowClose="true" />
<panel classname="SimpleFinishPanel" />
- <panel classname="ProcessPanel"/>
</panels>
+ <natives> <!-- required to run installer on windows for debug -->
+ <native type="izpack" name="ShellLink.dll"/>
+ <native type="izpack" name="ShellLink_x64.dll"/>
+ </natives>
+
<packs>
<pack name="main" required="yes">
<description>Main Installation</description>
<updatecheck>
<include name="lib/**" />
</updatecheck>
- <file src="lib" targetdir="$INSTALL_PATH" />
+ <fileset dir="lib" targetdir="$INSTALL_PATH/lib" />
<file src="pdf-over_linux.sh" targetdir="$INSTALL_PATH" />
<file src="uninstall_linux.sh" targetdir="$INSTALL_PATH" />
<file src="icons" targetdir="$INSTALL_PATH" />
<file src="ReadMe.txt" targetdir="$INSTALL_PATH" />
+
+ <!-- set executable bit, do not actually execute -->
<executable targetfile="$INSTALL_PATH/pdf-over_linux.sh" stage="never" />
<executable targetfile="$INSTALL_PATH/uninstall_linux.sh" stage="never" />
</pack>
@@ -64,4 +71,4 @@
-</installation>
+</izpack:installation>