blob: b84a80f9324b362916492f7bce88852b6b386082 [file] [log] [blame]
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00001# Aap recipe for Danish Vim spell files.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00002
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 = da_DK.aff da_DK.dic
11
12all: $SPELLDIR/da.latin1.spl $SPELLDIR/da.utf-8.spl ../README_da.txt
13
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000014$SPELLDIR/da.latin1.spl : $FILES
Bram Moolenaarae5bce12005-08-15 21:41:48 +000015 :sys env LANG=da_DK.ISO8859-1
16 $VIM -u NONE -e -c "mkspell! $SPELLDIR/da da_DK" -c q
17
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000018$SPELLDIR/da.utf-8.spl : $FILES
Bram Moolenaarae5bce12005-08-15 21:41:48 +000019 :sys env LANG=da_DK.UTF-8
20 $VIM -u NONE -e -c "mkspell! $SPELLDIR/da da_DK" -c q
21
22../README_da.txt : README 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%} da_DK.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.
33da_DK.aff da_DK.dic: {buildcheck=}
34 :assertpkg unzip patch
35 :fetch da_DK.zip
36 :sys $UNZIP da_DK.zip
37 :delete da_DK.zip
38 @if not os.path.exists('da_DK.orig.aff'):
39 :copy da_DK.aff da_DK.orig.aff
40 @if not os.path.exists('da_DK.orig.dic'):
41 :copy da_DK.dic da_DK.orig.dic
42 @if os.path.exists('da_DK.diff'):
43 :sys patch <da_DK.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 da_DK.orig.aff da_DK.aff >da_DK.diff
52 :sys {force} diff -a -C 1 da_DK.orig.dic da_DK.dic >>da_DK.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 da_DK.zip
61 :mkdir tmp
62 :cd tmp
63 @try:
64 @import stat
65 :sys $UNZIP ../da_DK.zip
66 :sys {force} diff ../da_DK.orig.aff da_DK.aff >d
67 @if os.stat('d')[stat.ST_SIZE] > 0:
68 :copy da_DK.aff ../da_DK.new.aff
69 :sys {force} diff ../da_DK.orig.dic da_DK.dic >d
70 @if os.stat('d')[stat.ST_SIZE] > 0:
71 :copy da_DK.dic ../da_DK.new.dic
72 @finally:
73 :cd ..
74 :delete {r}{f}{q} tmp
75 :delete da_DK.zip
76
77
78# vim: set sts=4 sw=4 :