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/packages/python_host/host.bash

21 lines
286 B
Bash
Raw Normal View History

2013-07-13 17:19:22 +01:00
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
}