; Installation script for an AlphaSpell dictionary

(transcript "Installing AlphaSpell ...")

(set destpath
    (askdir
        (prompt "Install the Dictionary where?")
        (help @askdir-help)
        (default "Work:")
    )
)

(copyfiles
    (prompt "Copying AlphaSpell Dictionary")
    (help @copyfiles-help)
    (source "Dictionary/")
    (dest destpath)
    (confirm)
    (all)
)

(message
    "If you use XES, please update your dictionary list with the "
    "requester that XES has for this purpose. You need at least XES "
    "2.1 to use this requester."
)

(exit (quiet))
