php: Specify --with-png-dir
[termux-packages] / packages / php / build.sh
1 TERMUX_PKG_HOMEPAGE=https://php.net
2 TERMUX_PKG_DESCRIPTION="Server-side, HTML-embedded scripting language"
3 TERMUX_PKG_VERSION=7.1.4
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_SRCURL=http://www.php.net/distributions/php-${TERMUX_PKG_VERSION}.tar.xz
6 TERMUX_PKG_SHA256=71514386adf3e963df087c2044a0b3747900b8b1fc8da3a99f0a0ae9180d300b
7 # Build native php for phar to build (see pear-Makefile.frag.patch):
8 TERMUX_PKG_HOSTBUILD=true
9 # Build the native php without xml support as we only need phar:
10 TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS="--disable-libxml --disable-dom --disable-simplexml --disable-xml --disable-xmlreader --disable-xmlwriter --without-pear"
11 TERMUX_PKG_DEPENDS="libandroid-glob, libxml2, liblzma, openssl, pcre, libbz2, libcrypt, libcurl, libgd, readline, freetype"
12 TERMUX_PKG_RM_AFTER_INSTALL="php/php/fpm"
13
14 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
15 ac_cv_func_res_nsearch=no
16 --enable-bcmath
17 --enable-calendar
18 --enable-exif
19 --enable-gd-native-ttf=$TERMUX_PREFIX
20 --enable-mbstring
21 --enable-opcache
22 --enable-pcntl
23 --enable-sockets
24 --enable-zip
25 --mandir=$TERMUX_PREFIX/share/man
26 --with-bz2=$TERMUX_PREFIX
27 --with-curl=$TERMUX_PREFIX
28 --with-freetype-dir=$TERMUX_PREFIX
29 --with-gd=$TERMUX_PREFIX
30 --with-iconv=$TERMUX_PREFIX
31 --with-libxml-dir=$TERMUX_PREFIX
32 --with-openssl=$TERMUX_PREFIX
33 --with-pcre-regex=$TERMUX_PREFIX
34 --with-png-dir=$TERMUX_PREFIX
35 --with-readline=$TERMUX_PREFIX
36 --with-zlib
37 --with-pgsql=shared,$TERMUX_PREFIX
38 --with-pdo-pgsql=shared,$TERMUX_PREFIX
39 --enable-fpm
40 --sbindir=$TERMUX_PREFIX/bin
41 "
42
43 termux_step_pre_configure () {
44 LDFLAGS+=" -landroid-glob -llog"
45
46 export PATH=$PATH:$TERMUX_PKG_HOSTBUILD_DIR/sapi/cli/
47 export NATIVE_PHP_EXECUTABLE=$TERMUX_PKG_HOSTBUILD_DIR/sapi/cli/php
48
49 # Run autoconf since we have patched config.m4 files.
50 cd $TERMUX_PKG_SRCDIR
51 autoconf
52
53 export EXTENSION_DIR=$TERMUX_PREFIX/lib/php
54 }
55
56 termux_step_post_configure () {
57 # Avoid src/ext/gd/gd.c trying to include <X11/xpm.h>:
58 sed -i 's/#define HAVE_GD_XPM 1//' $TERMUX_PKG_BUILDDIR/main/php_config.h
59 # Avoid src/ext/standard/dns.c trying to use struct __res_state:
60 sed -i 's/#define HAVE_RES_NSEARCH 1//' $TERMUX_PKG_BUILDDIR/main/php_config.h
61 }
62
63 termux_step_post_make_install () {
64 mkdir -p $TERMUX_PREFIX/etc/php-fpm.d
65 cp sapi/fpm/php-fpm.conf $TERMUX_PREFIX/etc/
66 cp sapi/fpm/www.conf $TERMUX_PREFIX/etc/php-fpm.d/
67
68 sed -i 's/SED=.*/SED=sed/' $TERMUX_PREFIX/bin/phpize
69 }