2009-03-19 06:51:55 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2010-05-20 06:46:00 -04:00
|
|
|
<project name="analyzers-icu" default="default">
|
2009-03-19 06:51:55 -04:00
|
|
|
|
|
|
|
<description>
|
2009-12-09 07:08:06 -05:00
|
|
|
Provides integration with ICU (International Components for Unicode) for
|
|
|
|
stronger Unicode and internationalization support.
|
2009-03-19 06:51:55 -04:00
|
|
|
</description>
|
|
|
|
|
2010-05-20 06:46:00 -04:00
|
|
|
<property name="build.dir" location="../build/icu" />
|
|
|
|
<property name="dist.dir" location="../dist/icu" />
|
2009-03-19 06:51:55 -04:00
|
|
|
|
|
|
|
<path id="additional.dependencies">
|
|
|
|
<fileset dir="lib" includes="icu4j-*.jar"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<pathconvert property="project.classpath"
|
|
|
|
targetos="unix"
|
|
|
|
refid="additional.dependencies"
|
|
|
|
/>
|
|
|
|
|
2010-05-20 06:46:00 -04:00
|
|
|
<import file="../../../lucene/contrib/contrib-build.xml"/>
|
2009-03-19 06:51:55 -04:00
|
|
|
|
2010-05-25 16:16:44 -04:00
|
|
|
<module-uptodate name="analysis/common" jarfile="../build/common/lucene-analyzers-common-${version}.jar"
|
|
|
|
property="analyzers-common.uptodate" classpath.property="analyzers-common.jar"/>
|
|
|
|
|
|
|
|
<path id="classpath">
|
|
|
|
<pathelement path="${analyzers-common.jar}"/>
|
|
|
|
<path refid="base.classpath"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<path id="test.classpath">
|
|
|
|
<pathelement path="${analyzers-common.jar}"/>
|
|
|
|
<path refid="classpath"/>
|
|
|
|
<pathelement location="../../../lucene/build/classes/test/"/>
|
|
|
|
<pathelement location="../build/common/classes/test/"/>
|
|
|
|
<path refid="junit-path"/>
|
|
|
|
<pathelement location="${build.dir}/classes/java"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<target name="compile-core" depends="build-analyzers-common, common.compile-core" />
|
|
|
|
|
|
|
|
<target name="build-analyzers-common" unless="analyzers-common.uptodate">
|
|
|
|
<echo>ICU building dependency ${analyzers-common.jar}</echo>
|
|
|
|
<ant antfile="../common/build.xml" target="default" inheritall="false" dir="../common" />
|
|
|
|
</target>
|
|
|
|
|
2010-04-22 04:47:49 -04:00
|
|
|
<property name="gennorm2.src.dir" value="src/data/utr30"/>
|
|
|
|
<property name="gennorm2.src.files"
|
|
|
|
value="nfkc.txt nfkc_cf.txt BasicFoldings.txt DiacriticFolding.txt DingbatFolding.txt HanRadicalFolding.txt NativeDigitFolding.txt"/>
|
2010-08-30 21:33:02 -04:00
|
|
|
<property name="gennorm2.tmp" value="${build.dir}/gennorm2/utr30.tmp"/>
|
2010-04-22 04:47:49 -04:00
|
|
|
<property name="gennorm2.dst" value="src/resources/org/apache/lucene/analysis/icu/utr30.nrm"/>
|
|
|
|
<target name="gennorm2">
|
2010-08-30 21:33:02 -04:00
|
|
|
<echo>Note that the gennorm2 and icupkg tools must be on your PATH. These tools
|
|
|
|
are part of the ICU4C package. See http://site.icu-project.org/ </echo>
|
|
|
|
<mkdir dir="${build.dir}/gennorm2"/>
|
2010-04-22 04:47:49 -04:00
|
|
|
<exec executable="gennorm2" failonerror="true">
|
2010-05-03 09:20:09 -04:00
|
|
|
<arg value="-v"/>
|
|
|
|
<arg value="-s"/>
|
|
|
|
<arg value="${gennorm2.src.dir}"/>
|
2010-08-30 21:33:02 -04:00
|
|
|
<arg line="${gennorm2.src.files}"/>
|
2010-05-03 09:20:09 -04:00
|
|
|
<arg value="-o"/>
|
2010-08-30 21:33:02 -04:00
|
|
|
<arg value="${gennorm2.tmp}"/>
|
|
|
|
</exec>
|
|
|
|
<!-- now convert binary file to big-endian -->
|
|
|
|
<exec executable="icupkg" failonerror="true">
|
|
|
|
<arg value="-tb"/>
|
|
|
|
<arg value="${gennorm2.tmp}"/>
|
2010-05-03 09:20:09 -04:00
|
|
|
<arg value="${gennorm2.dst}"/>
|
2010-04-22 04:47:49 -04:00
|
|
|
</exec>
|
2010-08-30 21:33:02 -04:00
|
|
|
<delete file="${gennorm2.tmp}"/>
|
2010-04-22 04:47:49 -04:00
|
|
|
</target>
|
2010-05-03 09:20:09 -04:00
|
|
|
|
|
|
|
<property name="rbbi.src.dir" location="src/data/uax29"/>
|
|
|
|
<property name="rbbi.dst.dir" location="src/resources/org/apache/lucene/analysis/icu/segmentation"/>
|
|
|
|
|
|
|
|
<target name="genrbbi" depends="compile-tools">
|
|
|
|
<mkdir dir="${rbbi.dst.dir}"/>
|
|
|
|
<java
|
|
|
|
classname="org.apache.lucene.analysis.icu.RBBIRuleCompiler"
|
|
|
|
dir="."
|
|
|
|
fork="true"
|
|
|
|
failonerror="true">
|
|
|
|
<classpath>
|
|
|
|
<path refid="additional.dependencies"/>
|
|
|
|
<pathelement location="${build.dir}/classes/tools"/>
|
|
|
|
</classpath>
|
|
|
|
<arg value="${rbbi.src.dir}"/>
|
|
|
|
<arg value="${rbbi.dst.dir}"/>
|
|
|
|
</java>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile-tools">
|
|
|
|
<compile
|
|
|
|
srcdir="src/tools/java"
|
|
|
|
destdir="${build.dir}/classes/tools">
|
|
|
|
<classpath refid="classpath"/>
|
|
|
|
</compile>
|
|
|
|
</target>
|
2009-03-19 06:51:55 -04:00
|
|
|
</project>
|