Blame vars/python2_host.vars

Lucio Andrés Illanes Albornoz (arab, vxp) 353e64
#
Lucio Andrés Illanes Albornoz e1d469
# set +o errexit -o noglob -o nounset is assumed.
Lucio Andrés Illanes Albornoz (arab, vxp) 353e64
#
Lucio Andrés Illanes Albornoz (arab, vxp) 353e64
Lucio Andrés Illanes Albornoz d279a9
pkg_python2_host_fetch_download() {
Lucio Andrés Illanes Albornoz bf9edf
	if ! pkg_fetch_download\
Lucio Andrés Illanes Albornoz bf9edf
	|| ! rtl_fileop rm "${PKG_BASE_DIR}/sbpython2"\
Lucio Andrés Illanes Albornoz 10ff54
	|| ! rtl_fetch_urls_git "${BUILD_DLCACHEDIR}/${PKG_NAME}" "${DEFAULT_GIT_ARGS}" "${PKG_BASE_DIR}/build" "${PKG_NAME}" "${PKG_MIRRORS_GIT:-}" "sbpython2=${DEFAULT_GITROOT}/python/sbpython2@main"\
Lucio Andrés Illanes Albornoz bf9edf
	|| ! rtl_fileop cp "../sbpython2/project/config/cfgdefs.sh" "../sbpython2/project/config/cfgdefs.sh.orig"\
Lucio Andrés Illanes Albornoz 0d1c4f
	|| ! sed -i"" -e"s/-ltinfo/&w/" -e"s/mb_ncurses_libs='\([^']*\)'/mb_ncurses_libs='\1 -ltinfow'/" ../sbpython2/project/config/cfgdefs.sh\
Lucio Andrés Illanes Albornoz bf9edf
	|| ! sed -i"" -e'108a\
Lucio Andrés Illanes Albornoz bf9edf
cfgtest_ldflags_append "-L$mb_prefix/lib"' "../sbpython2/project/config/cfgdefs.sh"\
Lucio Andrés Illanes Albornoz bf9edf
	|| ! sed -i"" '/^PYCOMPILE_CFLAGS.*+= -std=c99/a\
Lucio Andrés Illanes Albornoz 2e7f2b
PYCOMPILE_CFLAGS	+= -I'"${PREFIX}"'/include
Lucio Andrés Illanes Albornoz bf9edf
' "../sbpython2/project/pycompile.mk"\
Lucio Andrés Illanes Albornoz b0b1af
	|| ! sed -i"" '/^PYEXT_OSSAUDIODEV_SHARED/s/^/#/' ../sbpython2/project/pyexts.mk\
Lucio Andrés Illanes Albornoz bf9edf
	|| ! ex_pkg_state_set "${PKG_NAME}" "fetch_download" "-fetch_extract"; then
Lucio Andrés Illanes Albornoz bf9edf
		return 1;
Lucio Andrés Illanes Albornoz bf9edf
	fi;
Lucio Andrés Illanes Albornoz cff33e
};
Lucio Andrés Illanes Albornoz cff33e
Lucio Andrés Illanes Albornoz bf9edf
# vim:filetype=sh textwidth=0