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