blob: b198c0b0019713ab504780b80608c580031f5733 [file] [log] [blame]
#!/bin/bash
#
# 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.
#
# This script packages up an end-user version of Joshua for download.
set -u
cd $JOSHUA
ant java version
if [[ ! -e VERSION ]]; then
echo "* FATAL: can't find the version file!"
exit
fi
version=$(grep ^release VERSION | awk '{print $NF}')
commit=$(grep ^current VERSION | awk '{print $NF}')
clean=$(echo $commit | cut -d- -f2)
if [[ $clean != "0" ]]; then
version=$commit
fi
echo "Bundling up joshua-$version"
[[ ! -d release ]] && mkdir release
rm -f joshua-$version && ln -s $JOSHUA joshua-$version
tar czf release/joshua-$version.tgz \
--exclude='*~' --exclude='#*' \
joshua-$version/{README.md,VERSION,CHANGELOG,build.xml,logging.properties} \
joshua-$version/src \
joshua-$version/jni \
joshua-$version/bin \
joshua-$version/class \
joshua-$version/lib/{*jar,eng_sm6.gr,hadoop-2.5.2.tar.gz,README,LICENSES} \
joshua-$version/scripts \
joshua-$version/test \
joshua-$version/examples \
joshua-$version/thrax/bin/thrax.jar
ln -sf joshua-$version release/joshua-runtime-$version
tar czf release/joshua-runtime-$version.tgz \
--exclude='*~' --exclude='#*' \
joshua-runtime-$version/{README.md,VERSION,CHANGELOG,build.xml,logging.properties} \
joshua-runtime-$version/src/{joshua,kenlm,berkeleylm} \
joshua-runtime-$version/jni \
joshua-runtime-$version/bin \
joshua-runtime-$version/class \
joshua-runtime-$version/lib/{ant*,jung*,junit*jar,README,LICENSES} \
joshua-runtime-$version/scripts \
joshua-runtime-$version/examples
rm -f joshua-$version
rm -f VERSION