Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 0eff764ebccc2d463007b3bf77f0ad73 > files > 4

mvel-2.0.19-3.mga3.src.rpm

#!/bin/sh
#
# mvel script
# gil

# Source functions library
. /usr/share/java-utils/java-functions

# Source system prefs
if [ -f /etc/mvel.conf ] ; then
  . /etc/mvel.conf
fi

# Source user prefs
if [ -f $HOME/.mvelrc ] ; then
  . $HOME/.mvelrc
fi

# Configuration
MAIN_CLASS=org.mvel2.sh.Main
BASE_JARS="mvel objectweb-asm/asm objectweb-asm/asm-util"

# Set parameters
set_jvm
set_classpath $BASE_JARS
set_flags $BASE_FLAGS
set_options $BASE_OPTIONS

# Let's start
run "$@"