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
|
#!/bin/sh
## Copy files needed for a pypi distribution for linux or os x.
## copy-files-win.sh is the equivalent script for windows environment.
if [ "$1" = "--help" -o "$1" = "-h" ]; then
echo "copy-files.sh [--with-c-foma]"
echo ""
echo "Copy files needed for a pypi distribution on linux and OS X."
echo ""
echo "--without-c-foma: copy the C++ version of foma backend (instead of C)"
echo ""
echo "NOTE: flex/bison-generated cc and hh files are copied as such to"
echo "avoid dependency on swig. Make sure you have a fresh version of them"
echo "(run 'make' in top directory, if needed)."
echo ""
exit 0
fi
CPP_FOMA="false"
if [ "$1" = "--without-c-foma" ]; then
CPP_FOMA="true"
fi
if ! [ -d "back-ends" ]; then mkdir back-ends; fi
if ! [ -d "libhfst" ]; then mkdir libhfst; fi
if ! [ -d "hfst" ]; then mkdir hfst; fi
cp -R ../../back-ends/* back-ends/
cp -R ../../libhfst/* libhfst/
cp -R ../hfst/* hfst/
for file in hfst_extensions.cpp hfst_file_extensions.cpp hfst_lexc_extensions.cpp \
hfst_lookup_extensions.cpp hfst_pmatch_extensions.cpp hfst_pmatch_tokenize_extensions.cpp \
hfst_prolog_extensions.cpp hfst_regex_extensions.cpp hfst_rules_extensions.cpp \
hfst_xfst_extensions.cpp hfst_sfst_extensions.cpp libhfst.i docstrings.i \
libhfst_wrap.cpp;
do
cp ../$file $file
done
# Copy all files that have a c++ version as backend files to be compiled.
if [ "$CPP_FOMA" = "true" ]; then
cp back-ends/foma/cpp-version/* back-ends/foma/
fi
# .cc -> .cpp
for dir in back-ends libhfst;
do
find $dir -name "*.cc" | sed 's/\(.*\).cc/mv \1.cc \1.cpp/' | sh
done
|