Ignore:
Timestamp:
2008-07-31T15:16:45+12:00 (16 years ago)
Author:
oranfry
Message:

changes to lirk3 after gs2build project created in the repository

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/lirk3/bin/lirk3

    r16539 r16622  
    1 function show_help {
    2     echo "lirk3 - the LInux Release Kit for greenstone3"
    3     echo "Helps you to create releases of Greenstone3 from the Repository"
    4     echo
    5     echo "usage: lirk3 [-sim] [-from <target>] [other-args]"
    6     echo "  -sim"
    7     echo "      (shortcut for -Dexecute=false)"
    8     echo "      simulation only, don't actually do anything"
    9     echo
    10     echo "  -from <target>"
    11     echo "      (shortcut for -Dresume.from=<target>)"
    12     echo "      start execution from the target with the given target address"
    13     echo "      first level targets can be referred to by name. E.g., -from compile is the same as -from 1"
    14     echo
    15     echo "  -descend <target>"
    16     echo "      (shortcut for -Dresume.descend=<target>)"
    17     echo "      execute only the descendents of the target specified with -from"
    18     echo "      for example, with -descend 3, targets 3.1, 3.2, 3.3 etc. would be executed, but execution
    19     echo "      would stop before target 4
    20     echo
    21     echo "  -cp"
    22     echo "      show the classpath being used by LiRK3"
    23     echo "      (like `ant --diagnostics`)"
    24    
    25 }
     1rk_name="lirk3"
     2rk_fullname="Linux Release Kit for Greenstone3"
     3RK_HOME=$LIRK3_HOME
     4source $LIRK3_HOME/linux/rk
    265
    27 #work out the classpath
    28 CLASSPATH=$JAVA_HOME/lib/tools.jar
    29 for file in $LIRK3_HOME/lib/*.jar; do
    30     CLASSPATH=$CLASSPATH:$file
    31 done
    32 for file in $LIRK3_HOME/packages/ant/lib/*.jar; do
    33     CLASSPATH=$CLASSPATH:$file
    34 done
    35 for file in $LIRK3_HOME/packages/ant-installer/lib/*.jar; do
    36     CLASSPATH=$CLASSPATH:$file
    37 done
    38 CLASSPATH=$CLASSPATH:$LIRK3_HOME/packages/ant-installer/classes
    39 
    40 
    41 #create the command
    42 toexec="$LIRK3_HOME/packages/ant/bin/ant -lib `pwd`/installer/classes -f $LIRK3_HOME/ant-scripts/build.xml -Dbasedir=`pwd` -Dlirk3.home=$LIRK3_HOME"
    43 
    44 #pass on the arguments
    45 while [ "$1" != "" ]; do
    46 
    47     if [ "$1" == "-help" ]; then
    48         show_help
    49         exit
    50 
    51     elif [ "$1" == "-cp" ]; then
    52         echo $CLASSPATH
    53         exit
    54 
    55     elif [ "$1" == "-sim" ]; then
    56         toexec="$toexec -Dexecute=false"
    57         shift
    58 
    59     elif [ "$1" == "-descend" ]; then
    60         toexec="$toexec -Dresume.descend="
    61         descend=`echo $2 | sed 's/compile/1/g' | sed 's/create-distributions/2/g' | sed 's/create-installer/3/g' | sed 's/wrap/4/g'`
    62         toexec=$toexec$descend
    63         shift 2
    64 
    65     elif [ "$1" == "-from" ]; then
    66 
    67         toexec="$toexec -Dresume.from="
    68         from=`echo $2 | sed 's/compile/1/g' | sed 's/create-distributions/2/g' | sed 's/create-installer/3/g' | sed 's/wrap/4/g'`
    69         toexec=$toexec$from
    70         shift 2
    71 
    72     elif [ "$1" == "-to" ]; then
    73 
    74         toexec="$toexec -Dresume.to="
    75         to=`echo $2 | sed 's/compile/1/g' | sed 's/create-distributions/2/g' | sed 's/create-installer/3/g' | sed 's/wrap/4/g'`
    76         toexec=$toexec$to
    77         shift 2
    78 
    79 
    80     else
    81         toexec="$toexec $1"
    82         shift
    83     fi
    84 
    85 done
    86 
    87 #echo $toexec
    886echo "O---------------------------------------O"
    897echo "|                                       |"
     
    9210echo "|                                       |"
    9311echo "O---------------------------------------O"
    94 echo "Basedir  : `pwd`"
    9512
     13
     14#run the command
    9615$toexec
Note: See TracChangeset for help on using the changeset viewer.