; 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's Dictionaries")
    (help @copyfiles-help)
    (source "Dictionary/")
    (dest destpath)
    (confirm)
    (all)
)

(message
    "If you use XES, please update the Dict environment variable with "
    "the requester that XES has for this purpose. Because I was lazy "
    "about putting XES 2.0 together, you will have to source dict.xrc first."
)

(exit (quiet))
