1# Aap recipe for Chichewa Vim spell files. 2 3# Use a freshly compiled Vim if it exists. 4@if os.path.exists('../../../src/vim'): 5 VIM = ../../../src/vim 6@else: 7 :progsearch VIM vim 8 9SPELLDIR = .. 10FILES = ny_MW.aff ny_MW.dic 11 12all: $SPELLDIR/ny.iso-8859-14.spl $SPELLDIR/ny.utf-8.spl \ 13 $SPELLDIR/ny.ascii.spl ../README_ny.txt 14 15$SPELLDIR/ny.iso-8859-14.spl : $FILES 16 :sys $VIM -u NONE -e -c "set enc=iso-8859-14" 17 -c "mkspell! $SPELLDIR/ny ny_MW" -c q 18 19$SPELLDIR/ny.utf-8.spl : $FILES 20 :sys $VIM -u NONE -e -c "set enc=utf-8" 21 -c "mkspell! $SPELLDIR/ny ny_MW" -c q 22 23$SPELLDIR/ny.ascii.spl : $FILES 24 :sys $VIM -u NONE -e -c "mkspell! -ascii $SPELLDIR/ny ny_MW" -c q 25 26../README_ny.txt : README_ny_MW.txt 27 :copy $source $target 28 29# 30# Fetching the files from OpenOffice.org. 31# 32OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries 33:attr {fetch = $OODIR/%file%} ny_MW.zip 34 35# The files don't depend on the .zip file so that we can delete it. 36# Only download the zip file if the targets don't exist. 37ny_MW.aff ny_MW.dic: {buildcheck=} 38 :assertpkg unzip patch 39 :fetch ny_MW.zip 40 :sys $UNZIP ny_MW.zip 41 :delete ny_MW.zip 42 @if not os.path.exists('ny_MW.orig.aff'): 43 :copy ny_MW.aff ny_MW.orig.aff 44 @if not os.path.exists('ny_MW.orig.dic'): 45 :copy ny_MW.dic ny_MW.orig.dic 46 @if os.path.exists('ny_MW.diff'): 47 :sys patch <ny_MW.diff 48 49 50# Generate diff files, so that others can get the OpenOffice files and apply 51# the diffs to get the Vim versions. 52 53diff: 54 :assertpkg diff 55 :sys {force} diff -a -C 1 ny_MW.orig.aff ny_MW.aff >ny_MW.diff 56 :sys {force} diff -a -C 1 ny_MW.orig.dic ny_MW.dic >>ny_MW.diff 57 58 59# Check for updated OpenOffice spell files. When there are changes the 60# ".new.aff" and ".new.dic" files are left behind for manual inspection. 61 62check: 63 :assertpkg unzip diff 64 :fetch ny_MW.zip 65 :mkdir tmp 66 :cd tmp 67 @try: 68 @import stat 69 :sys $UNZIP ../ny_MW.zip 70 :sys {force} diff ../ny_MW.orig.aff ny_MW.aff >d 71 @if os.stat('d')[stat.ST_SIZE] > 0: 72 :copy ny_MW.aff ../ny_MW.new.aff 73 :sys {force} diff ../ny_MW.orig.dic ny_MW.dic >d 74 @if os.stat('d')[stat.ST_SIZE] > 0: 75 :copy ny_MW.dic ../ny_MW.new.dic 76 @finally: 77 :cd .. 78 :delete {r}{f}{q} tmp 79 :delete ny_MW.zip 80 81 82# vim: set sts=4 sw=4 : 83