diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-04 16:47:04 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-04 16:47:04 +0200 |
commit | e896bfd983089afec35f0f6d556131e7215a78da (patch) | |
tree | 3fc6789a9ef5515181f031f7c265edef71a1781f /pdf-over-gui | |
parent | 755b7a9adfdd7aee63d7891ebc708d6e858ec8de (diff) | |
download | pdf-over-e896bfd983089afec35f0f6d556131e7215a78da.tar.gz pdf-over-e896bfd983089afec35f0f6d556131e7215a78da.tar.bz2 pdf-over-e896bfd983089afec35f0f6d556131e7215a78da.zip |
move scripts to main pdfover directory, closes #82
Diffstat (limited to 'pdf-over-gui')
-rw-r--r-- | pdf-over-gui/src/main/resources/izpack/install.xml | 13 | ||||
-rw-r--r-- | pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh | 2 |
2 files changed, 9 insertions, 6 deletions
diff --git a/pdf-over-gui/src/main/resources/izpack/install.xml b/pdf-over-gui/src/main/resources/izpack/install.xml index 1de49f55..92f15dad 100644 --- a/pdf-over-gui/src/main/resources/izpack/install.xml +++ b/pdf-over-gui/src/main/resources/izpack/install.xml @@ -58,20 +58,23 @@ <include name="lib/**" />
</updatecheck>
<file src="lib" targetdir="$INSTALL_PATH" />
- <file src="scripts" targetdir="$INSTALL_PATH" />
+ <file src="scripts/pdf-over_linux.sh" targetdir="$INSTALL_PATH" os="unix" />
+ <file src="scripts/uninstall_linux.sh" targetdir="$INSTALL_PATH" os="unix" />
+ <file src="scripts/pdf-over_mac.sh" targetdir="$INSTALL_PATH" os="mac" />
+ <file src="scripts/postinstall_mac.sh" targetdir="$INSTALL_PATH" os="mac" />
<file src="icons" targetdir="$INSTALL_PATH" />
<file src="ReadMe.txt" targetdir="$INSTALL_PATH" />
<file src="jre/${bundled-jre.archiveName}" targetdir="$INSTALL_PATH/jre" os="windows" unpack="true" />
<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"
+ <executable targetfile="$INSTALL_PATH/pdf-over_linux.sh"
os="unix" stage="never"></executable>
- <executable targetfile="$INSTALL_PATH/scripts/uninstall_linux.sh"
+ <executable targetfile="$INSTALL_PATH/uninstall_linux.sh"
os="unix" stage="never"></executable>
- <executable targetfile="$INSTALL_PATH/scripts/pdf-over_mac.sh"
+ <executable targetfile="$INSTALL_PATH/pdf-over_mac.sh"
os="mac" stage="never"></executable>
- <executable targetfile="$INSTALL_PATH/scripts/postinstall_mac.sh"
+ <executable targetfile="$INSTALL_PATH/postinstall_mac.sh"
os="mac" stage="postinstall"></executable>
</pack>
</packs>
diff --git a/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh b/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh index dcb805ae..7c923463 100644 --- a/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh +++ b/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh @@ -1,4 +1,4 @@ #!/bin/sh BASEDIR=$(cd "$(dirname "$0")"; pwd) export LC_CTYPE="UTF-8" -exec java -XstartOnFirstThread -cp "$BASEDIR/../lib/*" at.asit.pdfover.gui.Main "$@" & +exec java -XstartOnFirstThread -cp "$BASEDIR/lib/*" at.asit.pdfover.gui.Main "$@" & |