#-------------------------------------------------------------------------
## Section-default build script.
#-------------------------------------------------------------------------
function default_build() {
  if is_depends_enabled $SPELL python;then
    default_build_python "$@"
  else
    default_build_python3 "$@"
  fi
}

#-------------------------------------------------------------------------
## Section-default install script.
#-------------------------------------------------------------------------
function default_install() {
  if is_depends_enabled $SPELL python;then
    default_install_python "$@"
  else
    default_install_python3 "$@"
  fi
}
