. "$GRIMOIRE/FUNCTIONS" &&

config_query_multi CHOSEN_SCRIPTS\
                   "Which script suite(s) would you like to install?" \
                   "cauldron" \
                   "enchantment" &&

for script in $CHOSEN_SCRIPTS ;do
  case "$script" in
    enchantment)
      config_query_multi INTERFACES \
                         "Which installer interfaces would you like installed?" \
                         "shell" \
                         "menu"
      ;;
  esac
done &&

config_query_string SCRIPT_BASE \
                    "What should the base path for the scripts be?" \
                    "/usr/share/smgl" &&

config_query_string ETC_BASE \
                    "What should the base path for the config files be?" \
                    "/etc/smgl" &&

config_query DOCUMENTATION \
             "Install documentation (man pages, requires man be installed)?" \
             y
