diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-08-10 21:07:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-08-10 21:07:57 +0000 |
commit | 0fa313a71870ccc2ba63da25a7abea850f5b3d02 (patch) | |
tree | fc949b566e1d78f6eea570aab55c52b7d6a6b052 /runtime/spell | |
parent | c388fbf9d99a8950c8c9a01466cfb8baa104ee8c (diff) | |
download | vim-git-0fa313a71870ccc2ba63da25a7abea850f5b3d02.tar.gz |
updated for version 7.0127v7.0127
Diffstat (limited to 'runtime/spell')
-rw-r--r-- | runtime/spell/main.aap | 2 | ||||
-rw-r--r-- | runtime/spell/yi/main.aap | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/runtime/spell/main.aap b/runtime/spell/main.aap index 34768b660..44d19906b 100644 --- a/runtime/spell/main.aap +++ b/runtime/spell/main.aap @@ -1,7 +1,7 @@ # "aap": generate all the .spl files # "aap diff" create all the diff files -LANG = de en fr he it nl pl +LANG = de en fr he it nl pl yi diff: $*LANG/diff :print done diff --git a/runtime/spell/yi/main.aap b/runtime/spell/yi/main.aap new file mode 100644 index 000000000..a426684d4 --- /dev/null +++ b/runtime/spell/yi/main.aap @@ -0,0 +1,33 @@ +# Aap recipe for Hebrew Vim spell files. + +# Use a freshly compiled Vim if it exists. +@if os.path.exists('../../../src/vim'): + VIM = ../../../src/vim +@else: + :progsearch VIM vim + +SPELLDIR = .. +FILE = wordlist.utf8.txt + +all: $SPELLDIR/yi.utf-8.spl ../README_yi.txt + +$SPELLDIR/yi.utf-8.spl : $VIM $FILE + :sys $VIM -u NONE -e -c "set enc=utf-8" + -c "mkspell! $(SPELLDIR)/yi $FILE" -c q + +../README_yi.txt : README.txt + :copy $source $target + +# +# Fetch the word list when needed. +# +URLDIR = http://www.cs.uky.edu/~raphael/yiddish +:attr {fetch = $URLDIR/%file%} $FILE + + +# There is no diff file, the word list is used as-is +diff: + :print No diff file. + + +# vim: set sts=4 sw=4 : |