0
0
mirror of https://github.com/vim/vim.git synced 2025-07-25 10:54:51 -04:00
vim/runtime/spell/sv/main.aap

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

94 lines
3.1 KiB
Plaintext
Raw Normal View History

2005-09-01 20:46:49 +00:00
# Aap recipe for Swedish Vim spell files.
2005-11-23 21:25:05 +00:00
#
# Maintainer: Mattias Winther <vim@mattias.winthernet.se>
2005-09-01 20:46:49 +00:00
# Use a freshly compiled Vim if it exists.
@if os.path.exists('../../../src/vim'):
VIM = ../../../src/vim
@else:
:progsearch VIM vim
SPELLDIR = ..
FILES = sv_SE.aff sv_SE.dic
all: $SPELLDIR/sv.latin1.spl $SPELLDIR/sv.utf-8.spl ../README_sv.txt
$SPELLDIR/sv.latin1.spl : $FILES
:sys env LANG=sv_SE.ISO-8859-1
2005-09-01 20:46:49 +00:00
$VIM -u NONE -e -c "mkspell! $SPELLDIR/sv sv_SE" -c q
$SPELLDIR/sv.utf-8.spl : $FILES
:sys env LANG=sv_SE.UTF-8
$VIM -u NONE -e -c "mkspell! $SPELLDIR/sv sv_SE" -c q
2010-07-18 18:47:44 +02:00
../README_sv.txt : README_sv.txt
2005-09-01 20:46:49 +00:00
:copy $source $target
#
# Fetching the files from OpenOffice.org.
#
2010-07-12 23:05:41 +02:00
OODIR = http://extensions.services.openoffice.org/e-files/1080/7
:attr {fetch = $OODIR/%file%} ooo_swedish_dict_1.43.oxt
2005-09-01 20:46:49 +00:00
# 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.
sv_SE.aff sv_SE.dic: {buildcheck=}
:assertpkg unzip patch
2010-07-12 23:05:41 +02:00
:fetch ooo_swedish_dict_1.43.oxt
:sys $UNZIP ooo_swedish_dict_1.43.oxt
:delete ooo_swedish_dict_1.43.oxt
:delete {r} META-INF
:copy dictionaries/sv_SE.aff sv_SE.aff
:copy dictionaries/sv_SE.dic sv_SE.dic
:delete {r} dictionaries dictionaries.xcu description.xml
2010-07-18 18:47:44 +02:00
:delete {f} README_sv.txt
:sys $VIM README_sv.txt -u NONE -N -e -c "0read LICENSE_en_US.txt" -c "read LICENSE_sv_SE.txt" -c "set ff=unix" -c write -c q
:delete LICENSE_en_US.txt LICENSE_sv_SE.txt
2005-09-01 20:46:49 +00:00
@if not os.path.exists('sv_SE.orig.aff'):
:copy sv_SE.aff sv_SE.orig.aff
@if not os.path.exists('sv_SE.orig.dic'):
:copy sv_SE.dic sv_SE.orig.dic
@if os.path.exists('sv_SE.diff'):
:sys patch <sv_SE.diff
2010-07-18 18:47:44 +02:00
# Delete all the generated files, start from scratch
clean:
:delete {f} sv_SE.aff sv_SE.dic
:delete {f} sv_SE.aff.orig sv_SE.dic.orig
:delete {f} sv_SE.orig.aff sv_SE.orig.dic
:delete {f} README_sv.txt
2005-09-01 20:46:49 +00:00
# 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 sv_SE.orig.aff sv_SE.aff >sv_SE.diff
:sys {force} diff -a -C 1 sv_SE.orig.dic sv_SE.dic >>sv_SE.diff
# Check for updated OpenOffice spell files. When there are changes the
# ".new.aff" and ".new.dic" files are left behind for manual inspection.
check:
:assertpkg unzip diff
2010-07-12 23:05:41 +02:00
:fetch ooo_swedish_dict_1.43.oxt
2005-09-01 20:46:49 +00:00
:mkdir tmp
:cd tmp
@try:
@import stat
2010-07-12 23:05:41 +02:00
:sys $UNZIP ../ooo_swedish_dict_1.43.oxt
2005-09-01 20:46:49 +00:00
:sys {force} diff ../sv_SE.orig.aff sv_SE.aff >d
@if os.stat('d')[stat.ST_SIZE] > 0:
:copy sv_SE.aff ../sv_SE.new.aff
:sys {force} diff ../sv_SE.orig.dic sv_SE.dic >d
@if os.stat('d')[stat.ST_SIZE] > 0:
:copy sv_SE.dic ../sv_SE.new.dic
@finally:
:cd ..
:delete {r}{f}{q} tmp
2010-07-12 23:05:41 +02:00
:delete ooo_swedish_dict_1.43.oxt
2005-09-01 20:46:49 +00:00
# vim: set sts=4 sw=4 :