pesterchum/MacBuild/configure_sip.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

22 lines
523 B
Bash
Executable file

#!/bin/bash
#
# Lexi's Configurations
#
echo "Lexi's lazy configuration. This is not an official configure script. Press enter to confirm this."
read confirm
if [ ! -d sip ]
then
echo "Rename your sip folder to sip."
exit 1
fi
cd sip
if [ -e makefile ]
then
make clean
fi
python configure.py --arch=i386 --arch=x86_64 \
--universal --deployment-target=10.5 \
--destdir=/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/
echo "---~ Done ~---"