termux-packages/packages/php/build.sh

69 lines
2.3 KiB
Bash
Raw Normal View History

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"
2017-11-02 23:59:35 +01:00
TERMUX_PKG_VERSION=7.1.11
TERMUX_PKG_SHA256=074093e9d7d21afedc5106904218a80a47b854abe368d2728ed22184c884893e
2016-12-10 03:16:20 +01:00
TERMUX_PKG_SRCURL=http://www.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
# 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"
TERMUX_PKG_DEPENDS="libandroid-glob, libxml2, liblzma, openssl, pcre, libbz2, libcrypt, libcurl, libgd, readline, freetype"
TERMUX_PKG_RM_AFTER_INSTALL="php/php/fpm"
2016-10-03 16:05:51 +02: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
--with-png-dir=$TERMUX_PREFIX
--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-06-12 14:27:49 +02:00
--with-apxs2=$TERMUX_PREFIX/bin/apxs
--enable-fpm
--sbindir=$TERMUX_PREFIX/bin
"
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
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
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>:
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:
sed -i 's/#define HAVE_RES_NSEARCH 1//' $TERMUX_PKG_BUILDDIR/main/php_config.h
2015-11-10 23:39:00 +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/
sed -i 's/SED=.*/SED=sed/' $TERMUX_PREFIX/bin/phpize
}