summaryrefslogtreecommitdiffstats
path: root/python-pypi/FUNCTIONS
blob: 7bb7e0b82968574c0671cb21ecc4afb8c09d36a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#-------------------------------------------------------------------------
## 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
}