/usr/bin/apertium-gen-deformat is in apertium-dev 3.4.0~r61013-5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 | #!/bin/bash
if [ $# != 2 ]
then if [ $# != 3 ]
then echo "USAGE: $(basename $0) -[aAmM] <input_file> <output_file>";
echo " -a: apertium standard mode";
echo " -A: apertium optimized mode (default mode)";
echo " -m: matxin standard mode";
echo " -M: matxin optimized mode";
exit 1;
elif [ $1 != "-a" ] && [ $1 != "-A" ] && [ $1 != "-m" ] && [ $1 != "-M" ]
then echo "USAGE: $(basename $0) -[AaMm] <input file> <output_file>";
echo " -a: apertium standard mode";
echo " -A: apertium optimized mode (default mode)";
echo " -m: matxin standard mode";
echo " -M: matxin optimized mode";
exit 1;
fi
fi
FLEXOPTS=""
FILE1=$1;
FILE2=$2;
if [ $# = 2 ]
then if [ ! -e $1 ]
then echo "ERROR: '$1' file not found";
exit 1;
fi
fi
MODE="apertium" # default mode
if [ $# = 3 ]
then if [ ! -e $2 ]
then echo "ERROR: '$2' file not found";
exit 1;
fi
if [ $1 = "-a" ]
then FLEXOPTS="";
MODE="apertium";
elif [ $1 = "-m" ]
then FLEXOPTS="";
MODE="matxin";
elif [ $1 = "-M" ]
then FLEXOPTS="-Cfer";
MODE="matxin";
fi
FILE1=$2;
FILE2=$3;
fi
/usr/bin/xmllint --dtdvalid /usr/share/apertium/format.dtd --noout $FILE1 && \
/usr/bin/xsltproc --stringparam mode $MODE /usr/share/apertium/deformat.xsl $FILE1 >/tmp/$$.deformat.l && \
/usr/bin/flex $FLEXOPTS -o/tmp/$$.lex.cc /tmp/$$.deformat.l && \
g++ -DGENFORMAT -Wall -ansi -O3 -mtune=nocona -fomit-frame-pointer -funroll-loops -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -w -I/usr/include/lttoolbox-3.3 -I/usr/lib/x86_64-linux-gnu/lttoolbox-3.3/include -I/usr/include/libxml2 -I /usr/include/apertium-3.4 -o $FILE2 /tmp/$$.lex.cc -llttoolbox3 -lxml2 -lpcre 2>/dev/null && \
rm /tmp/$$.deformat.l /tmp/$$.lex.cc
|