]> git.donarmstrong.com Git - deb_pkgs/scowl.git/blob - speller/make-aspell-custom
New upstream version 2019.10.06
[deb_pkgs/scowl.git] / speller / make-aspell-custom
1 #!/bin/bash
2
3 set -e
4
5 GIT_VER=$1
6 PARMS_FILE=`pwd`/$2
7
8 SCOWL=${SCOWL:-`pwd`}
9
10 rm -rf aspell6-en-custom
11 cp -a $SCOWL/speller/aspell-custom aspell6-en-custom
12 cd aspell6-en-custom
13 . README.in.sh > README
14 rm README.in.sh
15 mkdir lang
16 cp -a $SCOWL/speller/aspell/{en.dat,en_affix.dat,en_phonet.dat} lang/
17 mkdir doc
18 cp -a $SCOWL/README doc/SCOWL-README
19
20 cat > en-custom.wl
21
22 ./configure
23
24 make dist
25
26 mv aspell6-en-custom.tar.bz2 ..
27 cd ..
28 rm -r aspell6-en-custom
29
30