updated for version 7.0101
diff --git a/runtime/spell/nl/main.aap b/runtime/spell/nl/main.aap
new file mode 100644
index 0000000..80e5f74
--- /dev/null
+++ b/runtime/spell/nl/main.aap
@@ -0,0 +1,77 @@
+# Aap recipe for Dutch Vim spell files.
+
+# Use a freshly compiled Vim if it exists.
+@if os.path.exists('../../../src/vim'):
+    VIM = ../../../src/vim
+@else:
+    VIM = vim
+
+SPELLDIR = ..
+FILES    = nl_NL.aff nl_NL.dic
+
+all: $(SPELLDIR)/nl.latin1.spl $(SPELLDIR)/nl.utf-8.spl ../README_nl.txt
+
+$(SPELLDIR)/nl.latin1.spl : $(VIM) $(FILES)
+        :sys env LANG=nl_NL.ISO8859-1
+		$(VIM) -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
+
+$(SPELLDIR)/nl.utf-8.spl : $(VIM) $(FILES)
+        :sys env LANG=nl_NL.UTF-8
+		$(VIM) -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
+
+../README_nl.txt : README_nl_NL.txt
+        :copy $source $target
+
+#
+# Fetching the files from OpenOffice.org.
+#
+OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries
+:attr {fetch = $(OODIR)/%file%} nl_NL.zip
+
+# 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.
+nl_NL.aff nl_NL.dic: {buildcheck=}
+        :assertpkg unzip patch
+        :fetch nl_NL.zip
+        :sys $(UNZIP) nl_NL.zip
+        :delete nl_NL.zip
+        @if not os.path.exists('nl_NL.orig.aff'):
+                :copy nl_NL.aff nl_NL.orig.aff
+        @if not os.path.exists('nl_NL.orig.dic'):
+                :copy nl_NL.aff nl_NL.orig.dic
+        :sys patch <nl_NL.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 nl_NL.orig.aff nl_NL.aff >nl_NL.diff
+        :sys {force} diff -a -C 1 nl_NL.orig.dic nl_NL.dic >>nl_NL.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
+        :fetch nl_NL.zip
+        :mkdir tmp
+        :cd tmp
+        @try:
+            @import stat
+            :sys $(UNZIP) ../nl_NL.zip
+            :sys {force} diff ../nl_NL.orig.aff nl_NL.aff >d
+            @if os.stat('d')[stat.ST_SIZE] > 0:
+                :copy nl_NL.aff ../nl_NL.new.aff
+            :sys {force} diff ../nl_NL.orig.dic nl_NL.dic >d
+            @if os.stat('d')[stat.ST_SIZE] > 0:
+                :copy nl_NL.dic ../nl_NL.new.dic
+        @finally:
+            :cd ..
+            :delete {r}{f}{q} tmp
+            :delete nl_NL.zip
+
+
+# vim: set sts=4 sw=4 :