diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-29 12:41:46 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-29 12:41:46 +0200 |
commit | f698352c3379b27e338c054e078e70eac9ff4de5 (patch) | |
tree | ffcbf8db89d56ab72bceea3eb29cab09ec329bcd | |
parent | c4511a534ce10104664d58c48c52ec0842a1056b (diff) | |
download | pdf-over-f698352c3379b27e338c054e078e70eac9ff4de5.tar.gz pdf-over-f698352c3379b27e338c054e078e70eac9ff4de5.tar.bz2 pdf-over-f698352c3379b27e338c054e078e70eac9ff4de5.zip |
other pom cleanups:
- auto-extract bundled jre
- auto-build zip archive
- only build jar installer for linux
- only include icons where necessary
16 files changed, 257 insertions, 278 deletions
diff --git a/jre-bundles/OpenJDK17U-jre_aarch64_mac_hotspot_17.0.2_8.tar.gz b/jre-bundles/OpenJDK17U-jre_aarch64_mac_hotspot_17.0.2_8.tar.gz Binary files differnew file mode 100644 index 00000000..0cc8edc7 --- /dev/null +++ b/jre-bundles/OpenJDK17U-jre_aarch64_mac_hotspot_17.0.2_8.tar.gz diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index 276a7d27..6d08d3f4 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -214,11 +214,45 @@ </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> + <artifactId>truezip-maven-plugin</artifactId> + <version>1.2</version> + <executions> + <execution> + <id>extract-jre</id> + <phase>package</phase> <!-- linux profile: none --> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <fileset> + <directory>${project.basedir}/../jre-bundles/${bundled-jre.archiveName}/${bundled-jre.nameInArchive}</directory> + <outputDirectory>${staging.dir}/jre</outputDirectory> + </fileset> + </configuration> + </execution> + <execution> + <id>build-archive</id> + <phase>install</phase> <!-- linux profile: none --> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <fileset> + <directory>${staging.dir}</directory> + <outputDirectory>${project.build.output-dir}/pdf-over_${target.name}.zip/</outputDirectory> + </fileset> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> - <phase>install</phase> + <id>add-manifest-to-izpack</id> + <phase>none</phase> <!-- linux profile: verify --> <goals> <goal>exec</goal> </goals> @@ -290,47 +324,34 @@ <resources> <resource> <directory>src/main/resources</directory> - <includes> - <include>icons/*</include> - </includes> - </resource> - <resource> - <directory>src/main/resources</directory> <filtering>true</filtering> <includes> - <include>scripts/*</include> <include>ReadMe.txt</include> </includes> </resource> <resource> - <directory>src/main/resources/izpack</directory> - <excludes> - <exclude>*.xml</exclude> - </excludes> - </resource> - <resource> - <directory>src/main/resources/izpack</directory> + <directory>src/main/resources/scripts</directory> <filtering>true</filtering> <includes> - <include>*.xml</include> + <include>*${target.name}*</include> </includes> </resource> </resources> </configuration> </execution> <execution> - <id>copy-jre</id> - <phase>package</phase> + <id>copy-icons</id> + <phase>validate</phase> <!-- windows profile: none --> <goals> <goal>copy-resources</goal> </goals> <configuration> - <outputDirectory>${staging.dir}/jre</outputDirectory> + <outputDirectory>${staging.dir}</outputDirectory> <resources> <resource> - <directory>${project.basedir}/../jre-bundles</directory> + <directory>src/main/resources</directory> <includes> - <include>${bundled-jre.archiveName}</include> + <include>icons/*</include> </includes> </resource> </resources> @@ -363,7 +384,7 @@ <chdir>.</chdir> <icon>src/main/resources/icons/icon.ico</icon> <jre> - <path>jre/${bundled-jre.nameInArchive}</path> + <path>jre</path> </jre> <versionInfo> <fileVersion>${version.exe}</fileVersion> @@ -450,39 +471,13 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.codehaus.izpack</groupId> - <artifactId>izpack-maven-plugin</artifactId> - <version>1.0-alpha-5</version> - <dependencies> - <dependency> - <groupId>org.codehaus.izpack</groupId> - <artifactId>izpack-standalone-compiler</artifactId> - <version>${izpack-standalone.version}</version> - </dependency> - </dependencies> - <configuration> - <izpackBasedir>${staging.dir}</izpackBasedir> - <installerFile>${staging.dir}/setup.jar</installerFile> - <attach>false</attach> - </configuration> - <executions> - <execution> - <id>standard-installer</id> - <phase>package</phase> - <goals> - <goal>izpack</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <excludes> - <exclude>izpack/*</exclude> + <exclude>izpack-linux/*</exclude> <exclude>scripts/*</exclude> <exclude>ReadMe.txt</exclude> <exclude>keystore.jks</exclude> @@ -507,6 +502,110 @@ <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> <target.name>linux</target.name> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>2.4.2</version> + <executions> + <execution> + <id>copy-izpack-resources</id> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <encoding>UTF-8</encoding> + <outputDirectory>${staging.dir}</outputDirectory> + <resources> + <resource> + <directory>src/main/resources/izpack-linux</directory> + <excludes> + <exclude>*.xml</exclude> + </excludes> + </resource> + <resource> + <directory>src/main/resources/izpack-linux</directory> + <filtering>true</filtering> + <includes> + <include>*.xml</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + <execution> + <id>copy-result</id> + <phase>install</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${project.build.output-dir}</outputDirectory> + <resources> + <resource> + <directory>${staging.dir}</directory> + <includes> + <include>setup.jar</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>truezip-maven-plugin</artifactId> + <version>1.2</version> + <executions> + <execution> + <id>extract-jre</id> + <phase>none</phase> + </execution> + <execution> + <id>build-archive</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.codehaus.izpack</groupId> + <artifactId>izpack-maven-plugin</artifactId> + <version>1.0-alpha-5</version> + <dependencies> + <dependency> + <groupId>org.codehaus.izpack</groupId> + <artifactId>izpack-standalone-compiler</artifactId> + <version>${izpack-standalone.version}</version> + </dependency> + </dependencies> + <configuration> + <izpackBasedir>${staging.dir}</izpackBasedir> + <installerFile>${staging.dir}/setup.jar</installerFile> + <attach>false</attach> + </configuration> + <executions> + <execution> + <id>standard-installer</id> + <phase>package</phase> + <goals> + <goal>izpack</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2.1</version> + <executions> + <execution> + <id>add-manifest-to-izpack</id> + <phase>verify</phase> + </execution> + </executions> + </plugin> + </plugins> + </build> </profile> <profile> <id>windows</id> @@ -546,6 +645,16 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>2.4.2</version> + <executions> + <execution> + <id>copy-icons</id> + <phase>none</phase> + </execution> + </executions> + </plugin> </plugins> </build> </profile> diff --git a/pdf-over-gui/src/main/resources/izpack/ManifestEntries.mf b/pdf-over-gui/src/main/resources/izpack-linux/ManifestEntries.mf index 37a0cdce..37a0cdce 100644 --- a/pdf-over-gui/src/main/resources/izpack/ManifestEntries.mf +++ b/pdf-over-gui/src/main/resources/izpack-linux/ManifestEntries.mf diff --git a/pdf-over-gui/src/main/resources/izpack/a-sit-icon.png b/pdf-over-gui/src/main/resources/izpack-linux/a-sit-icon.png Binary files differindex 69754c1e..69754c1e 100644 --- a/pdf-over-gui/src/main/resources/izpack/a-sit-icon.png +++ b/pdf-over-gui/src/main/resources/izpack-linux/a-sit-icon.png diff --git a/pdf-over-gui/src/main/resources/izpack/customicons.xml b/pdf-over-gui/src/main/resources/izpack-linux/customicons.xml index 6222001d..6222001d 100644 --- a/pdf-over-gui/src/main/resources/izpack/customicons.xml +++ b/pdf-over-gui/src/main/resources/izpack-linux/customicons.xml diff --git a/pdf-over-gui/src/main/resources/izpack/icon16x16.png b/pdf-over-gui/src/main/resources/izpack-linux/icon16x16.png Binary files differindex 571c7885..571c7885 100644 --- a/pdf-over-gui/src/main/resources/izpack/icon16x16.png +++ b/pdf-over-gui/src/main/resources/izpack-linux/icon16x16.png diff --git a/pdf-over-gui/src/main/resources/izpack/install.xml b/pdf-over-gui/src/main/resources/izpack-linux/install.xml index 6b3fe129..ea22069d 100644 --- a/pdf-over-gui/src/main/resources/izpack/install.xml +++ b/pdf-over-gui/src/main/resources/izpack-linux/install.xml @@ -1,85 +1,67 @@ -<?xml version="1.0" encoding="UTF-8"?>
-
-<installation version="1.0">
-
- <info>
- <appname>PDF-Over</appname>
- <appversion>${project.version}</appversion>
- <javaversion>1.8</javaversion>
- <authors>
- <author name="A-SIT (Secure Information Technology Center - Austria)" email="" />
- </authors>
- <url>http://www.a-sit.at/</url>
- <uninstaller condition="!izpack.macinstall" />
- <!--run-privileged condition="izpack.windowsinstall.vista|izpack.windowsinstall.7" /-->
- </info>
-
- <guiprefs resizable="yes" width="500" height="360">
- <modifier key="useFlags" value="yes" />
- <modifier key="langDisplayType" value="native" />
- </guiprefs>
-
- <locale>
- <langpack iso3="eng" />
- <langpack iso3="deu" />
- </locale>
-
- <resources>
- <res id="Unix_shortcutSpec.xml" src="./unix_shortcutSpec.xml" />
- <res id="shortcutSpec.xml" src="./win_shortcutSpec.xml" />
- <res id="shortcutSpec.xml_deu" src="./win_shortcutSpec_deu.xml" />
- <res id="TargetPanel.dir.windows" src="defaultInstallDirWinProfile.txt" />
- <res id="JFrameIcon.png" src="icon16x16.png" />
- <res id="customicons.xml" src="./customicons.xml" />
- <res id="Installer.image" src="a-sit-icon.png" />
- <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>
-
- <panels>
- <panel classname="HelloPanel" />
- <panel classname="TargetPanel" />
- <panel classname="InstallPanel" />
- <panel classname="ShortcutPanel" />
- <panel classname="SimpleFinishPanel" />
- <panel classname="ProcessPanel"/>
- </panels>
-
- <packs>
- <pack name="main" required="yes">
- <description>Main Installation</description>
- <updatecheck>
- <include name="lib/**" />
- </updatecheck>
- <file src="lib" 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="jre/${bundled-jre.archiveName}" targetdir="$INSTALL_PATH/jre" os="mac" 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/pdf-over_linux.sh"
- os="unix" stage="never"></executable>
- <executable targetfile="$INSTALL_PATH/uninstall_linux.sh"
- os="unix" stage="never"></executable>
- <executable targetfile="$INSTALL_PATH/pdf-over_mac.sh"
- os="mac" stage="never"></executable>
- <executable targetfile="$INSTALL_PATH/postinstall_mac.sh"
- os="mac" stage="postinstall"></executable>
- </pack>
- </packs>
-
-
-
-</installation>
+<?xml version="1.0" encoding="UTF-8"?> + +<installation version="1.0"> + + <info> + <appname>PDF-Over</appname> + <appversion>${project.version}</appversion> + <javaversion>1.8</javaversion> + <authors> + <author name="A-SIT (Secure Information Technology Center - Austria)" email="" /> + </authors> + <url>http://www.a-sit.at/</url> + </info> + + <guiprefs resizable="yes" width="500" height="360"> + <modifier key="useFlags" value="yes" /> + <modifier key="langDisplayType" value="native" /> + </guiprefs> + + <locale> + <langpack iso3="eng" /> + <langpack iso3="deu" /> + </locale> + + <resources> + <res id="shortcutSpec.xml" src="./unix_shortcutSpec.xml" /> + <res id="JFrameIcon.png" src="icon16x16.png" /> + <res id="customicons.xml" src="./customicons.xml" /> + <res id="Installer.image" src="a-sit-icon.png" /> + <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> + + <panels> + <panel classname="HelloPanel" /> + <panel classname="TargetPanel" /> + <panel classname="InstallPanel" /> + <panel classname="ShortcutPanel" /> + <panel classname="SimpleFinishPanel" /> + <panel classname="ProcessPanel"/> + </panels> + + <packs> + <pack name="main" required="yes"> + <description>Main Installation</description> + <updatecheck> + <include name="lib/**" /> + </updatecheck> + <file src="lib" targetdir="$INSTALL_PATH" /> + <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" /> + <executable targetfile="$INSTALL_PATH/pdf-over_linux.sh" stage="never" /> + <executable targetfile="$INSTALL_PATH/uninstall_linux.sh" stage="never" /> + </pack> + </packs> + + + +</installation> diff --git a/pdf-over-gui/src/main/resources/izpack/logo.gif b/pdf-over-gui/src/main/resources/izpack-linux/logo.gif Binary files differindex 338a18ec..338a18ec 100644 --- a/pdf-over-gui/src/main/resources/izpack/logo.gif +++ b/pdf-over-gui/src/main/resources/izpack-linux/logo.gif diff --git a/pdf-over-gui/src/main/resources/izpack/unix_shortcutSpec.xml b/pdf-over-gui/src/main/resources/izpack-linux/unix_shortcutSpec.xml index bd2d0ba0..60e2666d 100644 --- a/pdf-over-gui/src/main/resources/izpack/unix_shortcutSpec.xml +++ b/pdf-over-gui/src/main/resources/izpack-linux/unix_shortcutSpec.xml @@ -1,29 +1,29 @@ -<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-
-<shortcuts>
- <!-- <skipIfNotSupported/> -->
- <programGroup defaultName="PDF-Over"
- location="applications"/>
-
- <shortcut
- name="PDF-Over"
- programGroup="yes"
- desktop="yes"
- applications="no"
- startMenu="no"
- startup="no"
- target="$INSTALL_PATH/scripts/pdf-over_linux.sh"
- commandLine=""
- workingDirectory="$INSTALL_PATH"
- description="PDF-Over ${project.version}"
- iconFile="$INSTALL_PATH/icons/icon.png"
- iconIndex="0"
- type="Application"
- encoding="UTF-8"
- terminal="false"
- KdeSubstUID="false"
- initialState="normal">
- <createForPack name="main"/>
- </shortcut>
-
-</shortcuts>
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> + +<shortcuts> + <!-- <skipIfNotSupported/> --> + <programGroup defaultName="PDF-Over" + location="applications"/> + + <shortcut + name="PDF-Over" + programGroup="yes" + desktop="yes" + applications="no" + startMenu="no" + startup="no" + target="$INSTALL_PATH/scripts/pdf-over_linux.sh" + commandLine="" + workingDirectory="$INSTALL_PATH" + description="PDF-Over ${project.version}" + iconFile="$INSTALL_PATH/icons/icon.png" + iconIndex="0" + type="Application" + encoding="UTF-8" + terminal="false" + KdeSubstUID="false" + initialState="normal"> + <createForPack name="main"/> + </shortcut> + +</shortcuts> diff --git a/pdf-over-gui/src/main/resources/izpack/defaultInstallDirWin.txt b/pdf-over-gui/src/main/resources/izpack/defaultInstallDirWin.txt deleted file mode 100644 index ca0f57cc..00000000 --- a/pdf-over-gui/src/main/resources/izpack/defaultInstallDirWin.txt +++ /dev/null @@ -1 +0,0 @@ -${ENV[ProgramFiles]}\PDF-Over
\ No newline at end of file diff --git a/pdf-over-gui/src/main/resources/izpack/defaultInstallDirWinProfile.txt b/pdf-over-gui/src/main/resources/izpack/defaultInstallDirWinProfile.txt deleted file mode 100644 index 9fc07023..00000000 --- a/pdf-over-gui/src/main/resources/izpack/defaultInstallDirWinProfile.txt +++ /dev/null @@ -1 +0,0 @@ -${ENV[APPDATA]}\PDF-Over
\ No newline at end of file diff --git a/pdf-over-gui/src/main/resources/izpack/win_shortcutSpec.xml b/pdf-over-gui/src/main/resources/izpack/win_shortcutSpec.xml deleted file mode 100644 index b6d2e734..00000000 --- a/pdf-over-gui/src/main/resources/izpack/win_shortcutSpec.xml +++ /dev/null @@ -1,42 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-
-<shortcuts>
- <!-- <skipIfNotSupported/> -->
- <programGroup defaultName="PDF-Over" location="applications"/>
-
- <shortcut
- name="PDF-Over"
- programGroup="yes"
- desktop="yes"
- applications="no"
- startMenu="no"
- startup="no"
- target="$INSTALL_PATH/scripts/pdf-over_win.bat"
- commandLine=""
- workingDirectory="$INSTALL_PATH"
- description="PDF-Over ${project.version}"
- iconFile="$INSTALL_PATH/icons/icon.ico"
- iconIndex="0"
- type="Application"
- encoding="UTF-8"
- initialState="normal">
- <createForPack name="main"/>
- </shortcut>
-
- <shortcut
- name="Uninstall PDF-Over"
- programGroup="yes"
- desktop="no"
- applications="no"
- startMenu="no"
- startup="no"
- target="$INSTALL_PATH/Uninstaller/Uninstaller.exe"
- commandLine=""
- workingDirectory="$INSTALL_PATH/Uninstaller"
- description="PDF-Over ${project.version} Uninstaller"
- type="Application"
- encoding="UTF-8"
- initialState="minimized">
- <createForPack name="main"/>
- </shortcut>
-</shortcuts>
diff --git a/pdf-over-gui/src/main/resources/izpack/win_shortcutSpec_deu.xml b/pdf-over-gui/src/main/resources/izpack/win_shortcutSpec_deu.xml deleted file mode 100644 index 8217560b..00000000 --- a/pdf-over-gui/src/main/resources/izpack/win_shortcutSpec_deu.xml +++ /dev/null @@ -1,42 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-
-<shortcuts>
- <!-- <skipIfNotSupported/> -->
- <programGroup defaultName="PDF-Over" location="applications"/>
-
- <shortcut
- name="PDF-Over"
- programGroup="yes"
- desktop="yes"
- applications="no"
- startMenu="no"
- startup="no"
- target="$INSTALL_PATH/scripts/pdf-over_win.bat"
- commandLine=""
- workingDirectory="$INSTALL_PATH"
- description="PDF-Over ${project.version}"
- iconFile="$INSTALL_PATH/icons/icon.ico"
- iconIndex="0"
- type="Application"
- encoding="UTF-8"
- initialState="normal">
- <createForPack name="main"/>
- </shortcut>
-
- <shortcut
- name="PDF-Over deinstallieren"
- programGroup="yes"
- desktop="no"
- applications="no"
- startMenu="no"
- startup="no"
- target="$INSTALL_PATH/Uninstaller/Uninstaller.exe"
- commandLine=""
- workingDirectory="$INSTALL_PATH/Uninstaller"
- description="PDF-Over ${project.version} Uninstaller"
- type="Application"
- encoding="UTF-8"
- initialState="minimized">
- <createForPack name="main"/>
- </shortcut>
-</shortcuts>
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 2e0e34a7..cd4701a6 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 $BASEDIR/jre/${bundled-jre.nameInArchive}/bin/java -XstartOnFirstThread -cp "$BASEDIR/lib/*" at.asit.pdfover.gui.Main "$@" & +exec $BASEDIR/jre/bin/java -XstartOnFirstThread -cp "$BASEDIR/lib/*" at.asit.pdfover.gui.Main "$@" & diff --git a/pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh b/pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh deleted file mode 100644 index 0b020ea3..00000000 --- a/pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -SCRIPTDIR=$(cd "$(dirname "$0")"; pwd) -BASEDIR=$(cd "$(dirname "$0")/.."; pwd) -export LC_CTYPE="UTF-8" -cd "$SCRIPTDIR" -chmod a+x pdf-over_mac.sh -cd "$BASEDIR" -if [ -d "$BASEDIR.app" ]; then - osacompile -e "do shell script \"$SCRIPTDIR/pdf-over_mac.sh\"" -x -o PDF-Over.app - cp -f icons/icon.icns PDF-Over.app/Contents/Resources/applet.icns -else - osacompile -e "do shell script \"$BASEDIR.app/Contents/scripts/pdf-over_mac.sh\"" -x -o "$BASEDIR.app" - cp -f icons/icon.icns "$BASEDIR.app"/Contents/Resources/applet.icns - mv "$BASEDIR"/* "$BASEDIR.app"/Contents/ - rmdir "$BASEDIR" - ln -s "$BASEDIR.app" "$BASEDIR" -fi @@ -57,8 +57,8 @@ else end_phase "FAILED" fi -profiles=( linux windows mac ) -names=( linux windows mac ) +profiles=( linux windows mac mac-aarch64 ) +names=( linux windows mac mac-aarch64 ) if [[ "$1" != "" ]] && [[ "$1" == "--profiles" ]]; then profiles=( $2 ) names=( $2 ) @@ -80,15 +80,6 @@ for (( i = 0 ; i < ${#names[@]} ; i++ )) do end_phase "FAILED" continue fi - - begin_phase "Copying Installer..." - cp "./pdf-over-gui/target/staging/$PROFILE/setup.jar" "$PUBLISH_DIR/$INSTALLER" - RETVAL=$? - if [ $RETVAL -eq 0 ]; then - end_phase "OK" - else - end_phase "FAILED" - fi done begin_phase "Building JNLP..." |