ICU-8972 delete obsolete .sh scripts

X-SVN-Rev: 31194
This commit is contained in:
Markus Scherer 2012-01-10 21:25:28 +00:00
parent 6d038075aa
commit acb27eb0d5
3 changed files with 0 additions and 81 deletions

View File

@ -1,16 +0,0 @@
# Copyright (C) 2011, International Business Machines
# Corporation and others. All Rights Reserved.
#
# Basic definitions for building ICU Unicode data.
# Sourced from makeprops.sh for example.
UNICODE_VERSION=6.1
# Assume that there are parallel src & bld trees with the Unicode tools
# source files and the out-of-source build files.
# Assume that the current folder is some/path/src/unicode
UNITOOLS_BLD=../../bld/unicode
# The sourcing script must define ICU_SRC and ICU_BLD for the ICU library
# source files and the out-of-source build files.
UNIDATA=$ICU_SRC/source/data/unidata
COMMON=$ICU_SRC/source/common
SRC_DATA_IN=$ICU_SRC/source/data/in
BLD_DATA_FILES=$ICU_BLD/data/out/build/icudt49l

View File

@ -1,50 +0,0 @@
# Copyright (C) 2010-2011, International Business Machines
# Corporation and others. All Rights Reserved.
#
# Parses Unicode Character Database files and build ICU core properties files.
#
# Invoke as
# ./makeprops.sh path/to/ICU/src/tree path/to/ICU/build/tree
#
# Prerequisite:
# In a Unicode version upgrade, pnames.icu must be generated first so that the
# tools here see new property names and property value names.
# See (ICU)/source/data/unidata/changes.txt.
ICU_SRC=$1
ICU_BLD=$2
source ./makedefs.sh
# uprops.icu
$UNITOOLS_BLD/c/genprops/genprops -d $SRC_DATA_IN -s $UNIDATA -i $BLD_DATA_FILES -u $UNICODE_VERSION
$UNITOOLS_BLD/c/genprops/genprops -d $COMMON --csource -s $UNIDATA -i $BLD_DATA_FILES -u $UNICODE_VERSION
# ubidi.icu
$UNITOOLS_BLD/c/genbidi/genbidi -d $SRC_DATA_IN -s $UNIDATA -i $BLD_DATA_FILES -u $UNICODE_VERSION
$UNITOOLS_BLD/c/genbidi/genbidi -d $COMMON --csource -s $UNIDATA -i $BLD_DATA_FILES -u $UNICODE_VERSION
# ucase.icu
$UNITOOLS_BLD/c/gencase/gencase -d $SRC_DATA_IN -s $UNIDATA -i $BLD_DATA_FILES -u $UNICODE_VERSION
$UNITOOLS_BLD/c/gencase/gencase -d $COMMON --csource -s $UNIDATA -i $BLD_DATA_FILES -u $UNICODE_VERSION
# unames.icu
$UNITOOLS_BLD/c/gennames/gennames -d $SRC_DATA_IN -q $UNIDATA/UnicodeData.txt $UNIDATA/NameAliases.txt -u $UNICODE_VERSION
# unidata/norm2/*.txt
$UNITOOLS_BLD/c/gennorm/gennorm -d $UNIDATA/norm2 -s $UNIDATA -i $BLD_DATA_FILES
# *.nrm
export LD_LIBRARY_PATH=$ICU_BLD/lib
$ICU_BLD/bin/gennorm2 -o $SRC_DATA_IN/nfc.nrm -s $UNIDATA/norm2 nfc.txt -u $UNICODE_VERSION
$ICU_BLD/bin/gennorm2 -o $SRC_DATA_IN/nfkc.nrm -s $UNIDATA/norm2 nfkc.txt -u $UNICODE_VERSION
$ICU_BLD/bin/gennorm2 -o $SRC_DATA_IN/nfkc_cf.nrm -s $UNIDATA/norm2 nfkc.txt nfkc_cf.txt -u $UNICODE_VERSION
$ICU_BLD/bin/gennorm2 -o $SRC_DATA_IN/uts46.nrm -s $UNIDATA/norm2 nfc.txt uts46.txt -u $UNICODE_VERSION
# Let genuca see the latest normalization data.
cp $SRC_DATA_IN/nfc.nrm $BLD_DATA_FILES
# UCA
$UNITOOLS_BLD/c/genuca/genuca -d $SRC_DATA_IN/coll -s $UNIDATA -i $BLD_DATA_FILES
# If this is the first pass through rebuilding ICU data files,
# then genuca has not yet seen the new core properties (e.g., case mappings)
# from genprops --csource. Rebuild ICU and then the UCA data (makeuca.sh).
# See (ICU)/source/data/unidata/changes.txt.

View File

@ -1,15 +0,0 @@
# Copyright (C) 2010, International Business Machines
# Corporation and others. All Rights Reserved.
#
# Parses Unicode Character Database files and build ICU UCA data files.
#
# Requires: 1. run makeprops.sh 2. rebuild ICU & Unicode tools
# See (ICU)/source/data/unidata/changes.txt
#
# Invoke as
# ./makeuca.sh path/to/ICU/src/tree path/to/ICU/build/tree
ICU_SRC=$1
ICU_BLD=$2
source ./makedefs.sh
$UNITOOLS_BLD/c/genuca/genuca -d $SRC_DATA_IN/coll -s $UNIDATA -i $BLD_DATA_FILES