2016-12-10 03:16:20 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://php.net
|
2015-11-10 23:39:00 +01:00
|
|
|
TERMUX_PKG_DESCRIPTION="Server-side, HTML-embedded scripting language"
|
2018-10-14 19:33:46 +02:00
|
|
|
TERMUX_PKG_VERSION=7.2.11
|
|
|
|
TERMUX_PKG_SHA256=da1a705c0bc46410e330fc6baa967666c8cd2985378fb9707c01a8e33b01d985
|
2018-05-25 12:39:28 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://secure.php.net/distributions/php-${TERMUX_PKG_VERSION}.tar.xz
|
2015-12-22 11:37:56 +01:00
|
|
|
# Build native php for phar to build (see pear-Makefile.frag.patch):
|
|
|
|
TERMUX_PKG_HOSTBUILD=true
|
2016-05-23 23:05:55 +02:00
|
|
|
# Build the native php without xml support as we only need phar:
|
|
|
|
TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS="--disable-libxml --disable-dom --disable-simplexml --disable-xml --disable-xmlreader --disable-xmlwriter --without-pear"
|
2017-01-19 15:04:15 +01:00
|
|
|
TERMUX_PKG_DEPENDS="libandroid-glob, libxml2, liblzma, openssl, pcre, libbz2, libcrypt, libcurl, libgd, readline, freetype"
|
2017-12-07 05:10:10 +01:00
|
|
|
# mysql modules were initially shared libs
|
|
|
|
TERMUX_PKG_CONFLICTS="php-mysql"
|
|
|
|
TERMUX_PKG_REPLACES="php-mysql"
|
2017-03-26 00:22:48 +01:00
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="php/php/fpm"
|
2016-10-03 16:05:51 +02:00
|
|
|
|
2017-02-20 02:57:27 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
|
|
ac_cv_func_res_nsearch=no
|
|
|
|
--enable-bcmath
|
|
|
|
--enable-calendar
|
|
|
|
--enable-exif
|
|
|
|
--enable-gd-native-ttf=$TERMUX_PREFIX
|
|
|
|
--enable-mbstring
|
|
|
|
--enable-opcache
|
|
|
|
--enable-pcntl
|
|
|
|
--enable-sockets
|
|
|
|
--enable-zip
|
|
|
|
--mandir=$TERMUX_PREFIX/share/man
|
|
|
|
--with-bz2=$TERMUX_PREFIX
|
|
|
|
--with-curl=$TERMUX_PREFIX
|
|
|
|
--with-freetype-dir=$TERMUX_PREFIX
|
|
|
|
--with-gd=$TERMUX_PREFIX
|
|
|
|
--with-iconv=$TERMUX_PREFIX
|
|
|
|
--with-libxml-dir=$TERMUX_PREFIX
|
|
|
|
--with-openssl=$TERMUX_PREFIX
|
|
|
|
--with-pcre-regex=$TERMUX_PREFIX
|
2017-04-20 08:15:02 +02:00
|
|
|
--with-png-dir=$TERMUX_PREFIX
|
2017-02-20 02:57:27 +01:00
|
|
|
--with-readline=$TERMUX_PREFIX
|
|
|
|
--with-zlib
|
2017-03-26 00:52:38 +01:00
|
|
|
--with-pgsql=shared,$TERMUX_PREFIX
|
|
|
|
--with-pdo-pgsql=shared,$TERMUX_PREFIX
|
2017-12-07 05:10:10 +01:00
|
|
|
--with-mysqli=mysqlnd
|
|
|
|
--with-pdo-mysql=mysqlnd
|
2017-11-07 17:45:16 +01:00
|
|
|
--with-mysql-sock=$TERMUX_PREFIX/tmp/mysqld.sock
|
2017-06-12 14:27:49 +02:00
|
|
|
--with-apxs2=$TERMUX_PREFIX/bin/apxs
|
2017-03-26 00:22:48 +01:00
|
|
|
--enable-fpm
|
|
|
|
--sbindir=$TERMUX_PREFIX/bin
|
2017-02-20 02:57:27 +01:00
|
|
|
"
|
2015-11-10 23:39:00 +01:00
|
|
|
|
|
|
|
termux_step_pre_configure () {
|
2016-12-10 03:16:20 +01:00
|
|
|
LDFLAGS+=" -landroid-glob -llog"
|
2016-09-04 00:15:47 +02:00
|
|
|
|
2015-12-24 08:50:23 +01:00
|
|
|
export PATH=$PATH:$TERMUX_PKG_HOSTBUILD_DIR/sapi/cli/
|
2015-12-22 11:37:56 +01:00
|
|
|
export NATIVE_PHP_EXECUTABLE=$TERMUX_PKG_HOSTBUILD_DIR/sapi/cli/php
|
|
|
|
|
2015-11-10 23:39:00 +01:00
|
|
|
# Run autoconf since we have patched config.m4 files.
|
|
|
|
autoconf
|
2017-03-26 00:22:48 +01:00
|
|
|
|
|
|
|
export EXTENSION_DIR=$TERMUX_PREFIX/lib/php
|
2015-11-10 23:39:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_post_configure () {
|
2016-10-03 16:05:51 +02:00
|
|
|
# Avoid src/ext/gd/gd.c trying to include <X11/xpm.h>:
|
2017-04-18 12:58:11 +02:00
|
|
|
sed -i 's/#define HAVE_GD_XPM 1//' $TERMUX_PKG_BUILDDIR/main/php_config.h
|
2016-10-03 16:05:51 +02:00
|
|
|
# Avoid src/ext/standard/dns.c trying to use struct __res_state:
|
2017-04-18 12:58:11 +02:00
|
|
|
sed -i 's/#define HAVE_RES_NSEARCH 1//' $TERMUX_PKG_BUILDDIR/main/php_config.h
|
2015-11-10 23:39:00 +01:00
|
|
|
}
|
2017-03-26 00:22:48 +01:00
|
|
|
|
|
|
|
termux_step_post_make_install () {
|
|
|
|
mkdir -p $TERMUX_PREFIX/etc/php-fpm.d
|
|
|
|
cp sapi/fpm/php-fpm.conf $TERMUX_PREFIX/etc/
|
|
|
|
cp sapi/fpm/www.conf $TERMUX_PREFIX/etc/php-fpm.d/
|
2017-04-18 12:58:11 +02:00
|
|
|
|
|
|
|
sed -i 's/SED=.*/SED=sed/' $TERMUX_PREFIX/bin/phpize
|
2017-03-26 00:22:48 +01:00
|
|
|
}
|