diff options
author | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-03-21 12:58:21 +0100 |
---|---|---|
committer | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-03-21 12:58:21 +0100 |
commit | c9171511c6002e94040477cb1df2eabb93891342 (patch) | |
tree | 87ec5c1e0a3ddc0eb8a5285b4b4801c3f68c4e23 /pdf-over-gui/src/main/resources/izpack | |
parent | cea750931e835ea2e1e2b5967f3b840b82cfc01b (diff) | |
download | pdf-over-c9171511c6002e94040477cb1df2eabb93891342.tar.gz pdf-over-c9171511c6002e94040477cb1df2eabb93891342.tar.bz2 pdf-over-c9171511c6002e94040477cb1df2eabb93891342.zip |
cleanup main, load swt lib removed
Diffstat (limited to 'pdf-over-gui/src/main/resources/izpack')
-rw-r--r-- | pdf-over-gui/src/main/resources/izpack/install.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/pdf-over-gui/src/main/resources/izpack/install.xml b/pdf-over-gui/src/main/resources/izpack/install.xml index 8418ccc3..6a864b81 100644 --- a/pdf-over-gui/src/main/resources/izpack/install.xml +++ b/pdf-over-gui/src/main/resources/izpack/install.xml @@ -34,6 +34,7 @@ <res id="customicons.xml" src="./customicons.xml" /> <res id="Installer.image" src="logo.gif" /> <res id="Installer.image.0" src="logo.gif" /> + <res id="postInstall.jar" src="postInstall.jar" /> </resources> <native type="izpack" name="ShellLink.dll" /> @@ -49,6 +50,7 @@ <panel classname="InstallPanel" /> <panel classname="ShortcutPanel" /> <panel classname="SimpleFinishPanel" /> + <panel classname="ProcessPanel"/> </panels> <packs> @@ -66,19 +68,28 @@ <file src="PDF-Over.exe" targetdir="$INSTALL_PATH" os="windows"/> <file src="PDF-Over-cli.exe" targetdir="$INSTALL_PATH" os="windows"/> <file src="Uninstaller.exe" targetdir="$INSTALL_PATH/Uninstaller" os="windows"/> - <executable targetfile="$INSTALL_PATH/scripts/pdf-over_linux.sh" + <file src="postInstall.jar" targetdir="$INSTALL_PATH/scripts" /> + <executable targetfile="$INSTALL_PATH/scripts/pdf-over_linux.sh" os="unix" stage="never"></executable> <executable targetfile="$INSTALL_PATH/scripts/uninstall_linux.sh" os="unix" stage="never"></executable> + <executable targetfile="$INSTALL_PATH/scripts/postInstall_linux.sh" + os="unix" stage="never"></executable> <executable targetfile="$INSTALL_PATH/scripts/pdf-over_win.bat" os="windows" stage="never"></executable> <executable targetfile="$INSTALL_PATH/scripts/uninstall_win.bat" os="windows" stage="never"></executable> <executable targetfile="$INSTALL_PATH/scripts/pdf-over_mac.sh" os="mac" stage="never"></executable> + <executable targetfile="$INSTALL_PATH/scripts/postInstall_linux.sh" + os="unix" stage="postInstall" keep="true"></executable> <executable targetfile="$INSTALL_PATH/scripts/postinstall_mac.sh" os="mac" stage="postinstall"></executable> + <executable targetfile="$INSTALL_PATH/scripts/postInstall_win.bat" + os="win" stage="postinstall" keep="true"></executable> </pack> </packs> + + </installation> |