blob: c3cae27e9f3bf0ecaa36e7a62815b258875235ad [file] [log] [blame]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001# Aap recipe for Dutch 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:
Bram Moolenaar78984f52005-08-01 07:19:10 +00007 :progsearch VIM vim
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00008
9SPELLDIR = ..
10FILES = nl_NL.aff nl_NL.dic
11
Bram Moolenaarae5bce12005-08-15 21:41:48 +000012all: $SPELLDIR/nl.latin1.spl $SPELLDIR/nl.utf-8.spl ../README_nl.txt
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000013
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000014$SPELLDIR/nl.latin1.spl : $FILES
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000015 :sys env LANG=nl_NL.ISO8859-1
Bram Moolenaarae5bce12005-08-15 21:41:48 +000016 $VIM -u NONE -e -c "mkspell! $SPELLDIR/nl nl_NL" -c q
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000017
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000018$SPELLDIR/nl.utf-8.spl : $FILES
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000019 :sys env LANG=nl_NL.UTF-8
Bram Moolenaarae5bce12005-08-15 21:41:48 +000020 $VIM -u NONE -e -c "mkspell! $SPELLDIR/nl nl_NL" -c q
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000021
Bram Moolenaarc3d2c442010-08-06 22:14:36 +020022../README_nl.txt : README_NL.txt README_EN.txt
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000023 :cat $source >! $target
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000024
25#
26# Fetching the files from OpenOffice.org.
27#
Bram Moolenaarc3d2c442010-08-06 22:14:36 +020028OODIR = http://extensions.services.openoffice.org/e-files/1456/5
29:attr {fetch = $OODIR/%file%} nl-dict.oxt
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000030
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.
33nl_NL.aff nl_NL.dic: {buildcheck=}
34 :assertpkg unzip patch
Bram Moolenaarc3d2c442010-08-06 22:14:36 +020035 :fetch nl-dict.oxt
36 :sys $UNZIP nl-dict.oxt
37 :update cleanunused
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000038 @if not os.path.exists('nl_NL.orig.aff'):
Bram Moolenaarae5bce12005-08-15 21:41:48 +000039 :copy nl_NL.aff nl_NL.orig.aff
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000040 @if not os.path.exists('nl_NL.orig.dic'):
Bram Moolenaarae5bce12005-08-15 21:41:48 +000041 :copy nl_NL.dic nl_NL.orig.dic
Bram Moolenaar78984f52005-08-01 07:19:10 +000042 @if os.path.exists('nl_NL.diff'):
43 :sys patch <nl_NL.diff
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000044
Bram Moolenaarc3d2c442010-08-06 22:14:36 +020045# Delete all the files unpacked from the archive
46clean: cleanunused
47 :delete {f} nl_NL.dic
48 :delete {f} nl_NL.aff
49 :delete {f} README_EN.txt
50 :delete {f} README_NL.txt
51
52# Delete all the files from the archive that are not used, including the
53# archive itself.
54cleanunused:
55 :delete {f} nl-dict.oxt
56 :delete {f} description.xml
57 :delete {f} Dictionaries.xcu
58 :delete {f} hyph_nl_NL.dic
59 :delete {r}{f} description
60 :delete {r}{f} images
61 :delete {r}{f} META-INF
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000062
63# Generate diff files, so that others can get the OpenOffice files and apply
64# the diffs to get the Vim versions.
65
66diff:
67 :assertpkg diff
68 :sys {force} diff -a -C 1 nl_NL.orig.aff nl_NL.aff >nl_NL.diff
69 :sys {force} diff -a -C 1 nl_NL.orig.dic nl_NL.dic >>nl_NL.diff
70
71
72# Check for updated OpenOffice spell files. When there are changes the
73# ".new.aff" and ".new.dic" files are left behind for manual inspection.
Bram Moolenaarc3d2c442010-08-06 22:14:36 +020074# Currently doesn't work.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000075
Bram Moolenaarc3d2c442010-08-06 22:14:36 +020076#check:
77# :assertpkg unzip diff
78# :fetch nl_NL.zip
79# :mkdir tmp
80# :cd tmp
81# @try:
82# @import stat
83# :sys $UNZIP ../nl_NL.zip
84# :sys {force} diff ../nl_NL.orig.aff nl_NL.aff >d
85# @if os.stat('d')[stat.ST_SIZE] > 0:
86# :copy nl_NL.aff ../nl_NL.new.aff
87# :sys {force} diff ../nl_NL.orig.dic nl_NL.dic >d
88# @if os.stat('d')[stat.ST_SIZE] > 0:
89# :copy nl_NL.dic ../nl_NL.new.dic
90# @finally:
91# :cd ..
92# :delete {r}{f}{q} tmp
93# :delete nl_NL.zip
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000094
95
96# vim: set sts=4 sw=4 :