blob: 31d057e0157ab91a8500b310a39665f13daabc3c [file] [log] [blame]
# 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 = ..
FILES = yi.dic yi.aff
WORDFILE = wordlist.utf8.txt
all: $SPELLDIR/yi.utf-8.spl ../README_yi.txt
$SPELLDIR/yi.utf-8.spl : $VIM $FILES
:sys $VIM -u NONE -e -c "set enc=utf-8"
-c "mkspell! $SPELLDIR/yi yi" -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%} $WORDFILE
# We use the word list as a .dic file, so that we can use an affix file to
# define a few extra things.
$FILES: {buildcheck=}
:assertpkg patch
:fetch $WORDFILE
:copy $WORDFILE yi.dic
:touch {force} yi.aff
@if os.path.exists('yi.diff'):
:sys patch < yi.diff
diff:
:assertpkg diff
:delete yi.diff
# Using a context of two lines to work around a bug in FreeBSD patch.
:sys {force} diff -a -C 2 $WORDFILE yi.dic >yi.diff
:sys {force} diff -a -N -C 1 /dev/null yi.aff >>yi.diff
# vim: set sts=4 sw=4 :