Mercurial > cgi-bin > hgweb.cgi > ImagePrep
view package-files/linux/imageprep @ 30:098c4f5507c7
Convert to JDK 15.
author | David Barts <n5jrn@me.com> |
---|---|
date | Mon, 13 Jun 2022 11:31:49 -0700 |
parents | c310ec097194 |
children |
line wrap: on
line source
#!/bin/sh # # Runs ImagePrep. Adopted from a similar script in the jEdit distribution. # # Find a java installation. if [ -z "${JAVA_HOME}" ]; then echo 'Warning: $JAVA_HOME environment variable not set! Consider setting it.' echo ' Attempting to locate java...' j=`which java 2>/dev/null` if [ -z "$j" ]; then echo "Failed to locate the java virtual machine! Bailing..." exit 1 else echo "Found a virtual machine at: $j..." JAVA="$j" fi else JAVA="${JAVA_HOME}/bin/java" fi # Antialias menus and dockable text: ANTIALIAS_ALL="-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true" # Launch application. exec "${JAVA}" ${ANTIALIAS_ALL} -jar "/usr/share/imageprep/@jar.filename@"