This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/python_host/host.bash

21 lines
286 B
Bash

source $pkg_common
configure()
{
../Python-$version/configure \
--prefix="${cfg_dir_toolchain}"
}
build()
{
# Parallel build not supported
$cmd_make_single clean
$cmd_make_single
}
host_install()
{
# Parallel build not supported
$cmd_make_single install
}