b98153570b
. USE_JAVA=1.3+ . Do not install swingall.jar . install in ${PREFIX}/share/java . don't extract under WKRDIR and copy -- untar the distfile directly . move the start-up script's template from Makefile into its own files/moneydance.sh Reviewed by: Sean Reilly (maintainer) Approved by: Sean Reilly (maintainer)
9 lines
119 B
Bash
9 lines
119 B
Bash
#!/bin/sh
|
|
MDDIR=%%MDDIR%%
|
|
|
|
for j in $MDDIR/*.jar
|
|
do
|
|
cp=$cp:$j
|
|
done
|
|
|
|
exec %%PREFIX%%/bin/javavm -cp ${cp#:} Moneydance
|