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

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