GLUED: renamed packages to rules, cfg_dir_packages to cfg_dir_rules.

This commit is contained in:
Ricardo Martins
2014-02-02 09:53:29 +00:00
parent 6420cb1823
commit eaf0c7d347
354 changed files with 7 additions and 7 deletions

25
rules/python/cross.bash Normal file
View File

@@ -0,0 +1,25 @@
source $pkg_common
configure()
{
echo "Post unpack is in $(pwd)"
echo "Pre-configuring by building an host python ... $(pwd) "
cd ../Python-$version/
./configure
}
build()
{
cd ../Python-$version
$cmd_make python Parser/pgen
}
host_install()
{
cd ../Python-$version
mv python hostpython
mv Parser/pgen Parser/hostpgen
$cmd_make distclean
}