X-Git-Url: https://git.donarmstrong.com/?p=deb_pkgs%2Fscowl.git;a=blobdiff_plain;f=speller%2Fmake-aspell-custom;fp=speller%2Fmake-aspell-custom;h=df42f94588d925b1166989376e3c4f8e0908c8bc;hp=0000000000000000000000000000000000000000;hb=0005008332a39079bb30e5579181bf945545f993;hpb=6ca7497339c62dec1a9cc4d3f7e8eeb03e4be8a2 diff --git a/speller/make-aspell-custom b/speller/make-aspell-custom new file mode 100755 index 0000000..df42f94 --- /dev/null +++ b/speller/make-aspell-custom @@ -0,0 +1,30 @@ +#!/bin/bash + +set -e + +GIT_VER=$1 +PARMS_FILE=`pwd`/$2 + +SCOWL=${SCOWL:-`pwd`} + +rm -rf aspell6-en-custom +cp -a $SCOWL/speller/aspell-custom aspell6-en-custom +cd aspell6-en-custom +. README.in.sh > README +rm README.in.sh +mkdir lang +cp -a $SCOWL/speller/aspell/{en.dat,en_affix.dat,en_phonet.dat} lang/ +mkdir doc +cp -a $SCOWL/README doc/SCOWL-README + +cat > en-custom.wl + +./configure + +make dist + +mv aspell6-en-custom.tar.bz2 .. +cd .. +rm -r aspell6-en-custom + +