Mercurial > cgi-bin > hgweb.cgi > JpegWasher
diff package-files/linux/jpegwasher @ 34:d175593317a8
Add a bunch of packaging stuff, NOT WORKING YET,
author | David Barts <n5jrn@me.com> |
---|---|
date | Wed, 29 Apr 2020 21:49:21 -0700 |
parents | |
children | bcbc92ffe0d0 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/package-files/linux/jpegwasher Wed Apr 29 21:49:21 2020 -0700 @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Runs JpegWasher. 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/JpegWasher/jars/@jar.filename@"