#!/bin/sh

if test -t 0
then :
else
	alert 'Please run install-python from Terminal!'
	exit 1
fi

zipfile=Python-2.4.2.zip

if test -e $zipfile
then :
else
	echo $zipfile not found in $PWD >&2
	exit 1
fi

unzip $zipfile -d /boot/home/config

cd /boot/home/config/bin
ln -sf python2.4 python

echo OK, done!
