Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/vim73/spell/am/main.aap
blob: e8ba35c30ad19d7589e91c65982e619f93bf0847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Aap recipe for Amharic Vim spell files.

# Use a freshly compiled Vim if it exists.
@if os.path.exists('../../../src/vim'):
    VIM = ../../../src/vim
@else:
    :progsearch VIM vim

SPELLDIR = ..
FILES    = am_ET.aff am_ET.dic

all: $SPELLDIR/am.utf-8.spl ../README_am.txt

$SPELLDIR/am.utf-8.spl : $FILES
        :sys env LANG=am_ET.UTF-8 $VIM -u NONE -e -c "mkspell! $SPELLDIR/am am_ET" -c q

../README_am.txt: README_am.txt
        :copy $source $target

#
# Fetching the files from Hunspell.
#
HTTPDIR = http://hunspell.sourceforge.net
TARNAME = am-demo.tar.gz
:attr {fetch = $HTTPDIR/%file%} $TARNAME

# The files don't depend on the .zip file so that we can delete it.
# Only download the zip file if the targets don't exist.
# This is a bit tricky, since the file name includes the date.
am_ET.aff am_ET.dic: {buildcheck=}
        :assertpkg tar gzip
        :fetch $TARNAME
        :sys gzip -d -c $TARNAME | tar xf -
        :move am/am.aff am_ET.aff
        :move am/am.dic am_ET.dic
        :move am/README README_am.txt
        :delete {recursive} am
        :delete $TARNAME
        @if not os.path.exists('am_ET.orig.aff'):
            :copy am_ET.aff am_ET.orig.aff
        @if not os.path.exists('am_ET.orig.dic'):
            :copy am_ET.dic am_ET.orig.dic
        @if os.path.exists('am_ET.diff'):
            :sys patch <am_ET.diff


# Generate diff files, so that others can get the OpenOffice files and apply
# the diffs to get the Vim versions.

diff:
        :assertpkg diff
        :sys {force} diff -a -C 1 am_ET.orig.aff am_ET.aff >am_ET.diff
        :sys {force} diff -a -C 1 am_ET.orig.dic am_ET.dic >>am_ET.diff


# Check for updated spell files.  When there are changes the
# ".new.aff" and ".new.dic" files are left behind for manual inspection.

check:
        :print Sorry, not implemented yet.


# vim: set sts=4 sw=4 :