pesterchum/MacBuild/configure_python.sh
Lexi 9f9563e3ad Fiddled with the MacBuild configure scripts to set the deployment target to 10.5
Still need to include instructions on compiling pygame for 10.5 but CBAAAAAA
2011-08-14 07:17:50 +01:00

24 lines
523 B
Bash
Executable file

#!/bin/bash
#
# Lexi's ./configure script
#
echo "Lexi's lazy configuration. This is not an official configure script. Press enter to confirm this."
read confirm
if [ ! -d python ]
then
echo "Rename your python folder to python."
exit 1
fi
cd python
if [ ! -d python ]
then
echo "Rename your python folder to python."
exit 1
fi
if [ -e makefile ]
then
make clean
fi
./configure --enable-framework --enable-universalsdk=/ --with-universal-archs=intel MACOSX_DEPLOYMENT_TARGET=10.5
echo "---~ Done ~---"