comparison runtime/spell/sv/main.aap @ 502:52e76e2b5b65 v7.0140

updated for version 7.0140
author vimboss
date Thu, 01 Sep 2005 20:46:49 +0000
parents
children 862863033fdd
comparison
equal deleted inserted replaced
501:ce2181d14aa0 502:52e76e2b5b65
1 # Aap recipe for Swedish 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
9 SPELLDIR = ..
10 FILES = sv_SE.aff sv_SE.dic
11
12 all: $SPELLDIR/sv.latin1.spl $SPELLDIR/sv.utf-8.spl ../README_sv.txt
13
14 $SPELLDIR/sv.latin1.spl : $FILES
15 :sys env LANG=sv_SE.ISO8859-1
16 $VIM -u NONE -e -c "mkspell! $SPELLDIR/sv sv_SE" -c q
17
18 $SPELLDIR/sv.utf-8.spl : $FILES
19 :sys env LANG=sv_SE.UTF-8
20 $VIM -u NONE -e -c "mkspell! $SPELLDIR/sv sv_SE" -c q
21
22 ../README_sv.txt : README_sv_SE.txt
23 :copy $source $target
24
25 #
26 # Fetching the files from OpenOffice.org.
27 #
28 OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries
29 :attr {fetch = $OODIR/%file%} sv_SE.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.
33 sv_SE.aff sv_SE.dic: {buildcheck=}
34 :assertpkg unzip patch
35 :fetch sv_SE.zip
36 :sys $UNZIP sv_SE.zip
37 :delete sv_SE.zip
38 :delete hyph_sv_SE.dic
39 @if not os.path.exists('sv_SE.orig.aff'):
40 :copy sv_SE.aff sv_SE.orig.aff
41 @if not os.path.exists('sv_SE.orig.dic'):
42 :copy sv_SE.dic sv_SE.orig.dic
43 @if os.path.exists('sv_SE.diff'):
44 :sys patch <sv_SE.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
50 diff:
51 :assertpkg diff
52 :sys {force} diff -a -C 1 sv_SE.orig.aff sv_SE.aff >sv_SE.diff
53 :sys {force} diff -a -C 1 sv_SE.orig.dic sv_SE.dic >>sv_SE.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
59 check:
60 :assertpkg unzip diff
61 :fetch sv_SE.zip
62 :mkdir tmp
63 :cd tmp
64 @try:
65 @import stat
66 :sys $UNZIP ../sv_SE.zip
67 :sys {force} diff ../sv_SE.orig.aff sv_SE.aff >d
68 @if os.stat('d')[stat.ST_SIZE] > 0:
69 :copy sv_SE.aff ../sv_SE.new.aff
70 :sys {force} diff ../sv_SE.orig.dic sv_SE.dic >d
71 @if os.stat('d')[stat.ST_SIZE] > 0:
72 :copy sv_SE.dic ../sv_SE.new.dic
73 @finally:
74 :cd ..
75 :delete {r}{f}{q} tmp
76 :delete sv_SE.zip
77
78
79 # vim: set sts=4 sw=4 :