Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > 9e53d13924639e08534ad9c3c06f3808 > files > 1

javahelp2-2.0.05-17.mga5.src.rpm

#!/bin/sh
# 
# jhindexer script
# JPackage project (http://jpackage.sourceforge.net)
# $Id$

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

# Allow system prefs
if [ -f /etc/jhindexer.conf ] ; then 
  . /etc/jhindexer.conf
fi

# Allow user-defined prefs
if [ -f $HOME/.jhindexerrc ] ; then 
  . $HOME/.jhindexerrc
fi

# Configuration
MAIN_CLASS=com.sun.java.help.search.Indexer
BASE_JARS=javahelp2

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

# Let's start
run "$@"