3 if [ "x$BASH_SOURCE" == "x" ]; then echo '$BASH_SOURCE not set'; exit 1; fi
4 DEV
=$
(cd -P "$(dirname "${BASH_SOURCE[0]}" )" && pwd)
6 set -e # DO NOT USE PIPES unless this is rewritten
8 .
"$DEV/includes/php.sh"
10 if [ "x$PHP" != "x" -a -x "$PHP" ]; then
11 echo "PHP is already installed"
15 TAR
=php5.4
-latest.
tar.gz
16 PHPURL
="http://snaps.php.net/$TAR"
20 echo "Preparing to download and install a local copy of PHP 5.4, note that this can take some time to do."
21 echo "If you wish to avoid re-doing this for uture dev installations of MediaWiki we suggest installing php in ~/.mediawiki/php"
22 echo -n "Install PHP in ~/.mediawiki/php [y/N]: "
25 case "$INSTALLINHOME" in
27 PREFIX
="$HOME/.mediawiki/php"
34 # Some debain-like systems bundle wget but not curl, some other systems
35 # like os x bundle curl but not wget... use whatever is available
36 echo -n "Downloading PHP 5.4"
37 if command -v wget
&>/dev
/null
; then
40 elif command -v curl
&>/dev
/null
; then
45 echo "Could not find curl or wget." >&2;
49 echo "Extracting php 5.4"
54 echo "Configuring and installing php 5.4 in $PREFIX"
55 .
/configure
--prefix="$PREFIX"