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