avoid worldlist*zip and hunspell*zip for hunspell

Let's not create worldlist*zip and hunspell*zip for hunspell. We are not going
to distribute them or use them in any way. Saves us a zip build-depdency
but more importantly it does not create "binary" files in speller/hunspell
we would need to manually remove it clean.

Gbp-Pq: Name no-zips.diff
This commit is contained in:
Rene Engelhard 2022-05-14 02:51:50 +08:00 committed by openKylinBot
parent f6cb8ff791
commit 6cf5fc6c89
1 changed files with 0 additions and 9 deletions

View File

@ -56,12 +56,8 @@ doit() {
cat $3 >> README_$1.txt
fi
rm -f hunspell-$fn.zip
zip -9 hunspell-$fn.zip README_$1.txt $1.dic $1.aff
if [ -z "$3" ]; then
mkdir -p hunspell
cp hunspell-$fn.zip hunspell/
#echo check
@ -70,11 +66,6 @@ doit() {
#hunspell -l -d ./$1 < $1.dic.tocheck > misspelled
cat $1.tocheck | iconv -f iso-8859-1 -t utf-8 | $UNIX2DOS > $1.txt
cat <<EOF > README.txt
This zip file contains the words found in the corresponding Hunspell
dictionary. See the file README_$1.txt.
EOF
zip -9 hunspell/wordlist-$fn.zip README.txt README_$1.txt $1.txt
fi
}