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