File: build.sh

package info (click to toggle)
libjgroups-java 2.12.2.Final-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 8,552 kB
  • sloc: java: 109,098; xml: 9,423; sh: 174; makefile: 16
file content (58 lines) | stat: -rwxr-xr-x 1,236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh
# Ant build script for the JGroups project
# The following variables have to be set in the following way
# PATH should include $JAVA_HOME/bin
JG_HOME=.


case "`uname`" in
    CYGWIN*)
        cygwin=true
        ;;

    Darwin*)
        darwin=true
        ;;
esac



LIB=lib



if [ "$cygwin" = "true" ]; then
    for i in ${LIB}/*.jar
        do
           CP=${CP}${i}\;
        done
else
    for i in ${LIB}/*.jar
        do
           CP=${CP}${i}:
        done
fi



if [ -n "$JAVA_HOME" ]; then
    if [ -f "$JAVA_HOME/lib/tools.jar" ]; then
        if [ "$cygwin" = "true" ]; then
            CP=${CP}\;${JAVA_HOME}/lib/tools.jar
        else
            CP=${CP}:${JAVA_HOME}/lib/tools.jar
        fi
    fi
else
    echo "WARNING: JAVA_HOME environment variable is not set."
    echo "  If build fails because sun.* classes could not be found"
    echo "  you will need to set the JAVA_HOME environment variable"
    echo "  to the installation directory of java."
fi

if [ -n "$JAVA_HOME" ]; then
	${JAVA_HOME}/bin/java -classpath "${CP}" org.apache.tools.ant.Main -buildfile ${JG_HOME}/build.xml $*
else
	java -classpath "${CP}" org.apache.tools.ant.Main -buildfile ${JG_HOME}/build.xml $*
fi
#echo "CP is ${CP}"