0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/spell/sr/main.aap

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

24 lines
573 B
Plaintext
Raw Normal View History

2018-02-27 17:11:01 +01:00
# Aap recipe for Serbian Vim spell files.
2022-06-23 13:04:20 +01:00
# See README_sr.txt for instructions to get the .aff and .dic files.
2018-02-27 17:11:01 +01:00
# Use a freshly compiled Vim if it exists.
@if os.path.exists('../../../src/vim'):
VIM = ../../../src/vim
@else:
:progsearch VIM vim
SPELLDIR = ..
2022-06-23 13:04:20 +01:00
FILES = sr.aff sr.dic
2018-02-27 17:11:01 +01:00
2022-06-23 13:04:20 +01:00
all: $SPELLDIR/sr.utf-8.spl ../README_sr.txt
2018-02-27 17:11:01 +01:00
$SPELLDIR/sr.utf-8.spl : $FILES
:sys env LANG=sr_RS.UTF-8
2022-06-23 13:04:20 +01:00
$VIM -u NONE -e -c "set enc=utf-8" -c "mkspell! $SPELLDIR/sr sr" -c q
2018-02-27 17:11:01 +01:00
2022-06-23 13:04:20 +01:00
../README_sr.txt : README_sr.txt
:copy README_sr.txt $target
2018-02-27 17:11:01 +01:00
vim: set sts=4 sw=4 :