1 #!/bin/sh 2 # Copyright (C) 2004-2014, International Business Machines Corporation 3 # and others. All Rights Reserved. 4 5 # 6 ###################### 7 ## 8 ## See documentation at: http://www.jtcsv.com/cgibin/cldrwiki.pl?CldrTools 9 ## 10 ###################### 11 # 12 # To use: put this in your 'bin' dir, 13 # and symlink it to XMLValidator and LDML2ICUConverter 14 # 15 16 17 ## Change the following if needed 18 # where icu4j lives (or other classes) 19 CLDRCLASSPATH=${HOME}/icu4j/icu4j.jar:${HOME}/icu4j/classes/ 20 # the command to use with java (or empty for none) 21 CPCMD= 22 # how to run java 23 JAVA=${JAVA-java} 24 25 ## Override the above settings in a ~/.cldrrc file if desired (+x) 26 # example: 27 # CLDRCLASSPATH=${HOME}/J/icu4j/classes 28 if [ -x ${HOME}/.cldrrc ]; 29 then 30 . ${HOME}/.cldrrc 31 fi 32 33 if [ "x${CLDRCLASSPATH}" != "x" ]; 34 then 35 if [ "x${CPCMD}" = "x" ]; 36 then 37 CPCMD="-classpath ${CLDRCLASSPATH}" 38 fi 39 fi 40 41 # root name of this script 42 ME=`basename $0` 43 44 ## no need to change below this line. 45 # base package 46 case $ME 47 in 48 "XMLValidator") PKG=org.unicode.cldr.util;; 49 "ShowLanguages") PKG=org.unicode.cldr.tool;; 50 "LDML2ICUConverter") PKG=org.unicode.cldr.icu;; 51 "ConsoleCheckCLDR") PKG=org.unicode.cldr.test;; 52 "Ldml2JsonConverter") PKG=org.unicode.cldr.json;; 53 *) PKG=org.unicode.cldr.tool;; 54 esac 55 56 #error check 57 if [ $PKG = "UNKNOWN" ]; 58 then 59 echo "Unknown tool name $ME. Please set the package here.!" 60 exit -1 61 fi 62 63 64 if [ $ME = "CLDRWrapper" ]; 65 then 66 echo "# $ME: Don't run this script directly." 67 echo Symlink $0 to the names XMLValidator, LDML2ICUConverter, and other ${PKG} tools. 68 exit 1 69 fi 70 exec ${JAVA} ${VM_OPTS} ${WRAPPER_OPTS} ${CWDEFS} ${CPCMD} ${PKG}.${ME} "$@" 71