2021-06-04 02:59:23 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=php
|
|
|
|
useconfigure="true"
|
2021-07-29 16:01:59 +03:00
|
|
|
version="8.0.8"
|
|
|
|
files="https://www.php.net/distributions/php-${version}.tar.xz php-${version}.tar.xz dc1668d324232dec1d05175ec752dade92d29bb3004275118bc3f7fc7cbfbb1c"
|
2021-06-04 02:59:23 +03:00
|
|
|
auth_type=sha256
|
2021-07-29 16:01:52 +03:00
|
|
|
depends="libiconv libxml2 openssl readline sqlite zlib"
|
2021-06-04 02:59:23 +03:00
|
|
|
configopts="
|
|
|
|
--disable-opcache
|
|
|
|
--prefix=${SERENITY_INSTALL_ROOT}/usr/local
|
2021-06-04 14:01:54 +03:00
|
|
|
--with-iconv=${SERENITY_INSTALL_ROOT}/usr/local
|
2021-06-04 22:39:11 +03:00
|
|
|
--with-openssl
|
2021-07-29 16:01:52 +03:00
|
|
|
--with-readline=${SERENITY_INSTALL_ROOT}/usr/local
|
2021-06-04 21:42:46 +03:00
|
|
|
--with-zlib
|
2021-06-04 22:37:28 +03:00
|
|
|
--without-pcre-jit
|
2021-06-04 02:59:23 +03:00
|
|
|
"
|
2021-08-04 14:18:56 +03:00
|
|
|
launcher_name="PHP"
|
|
|
|
launcher_category="Development"
|
|
|
|
launcher_command="/usr/local/bin/php -a"
|
|
|
|
launcher_run_in_terminal="true"
|
|
|
|
icon_file="win32/build/php.ico"
|
2021-06-04 02:59:23 +03:00
|
|
|
|
2021-07-29 16:01:59 +03:00
|
|
|
export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2"
|
2021-06-04 02:59:23 +03:00
|
|
|
export LIBS="-ldl"
|
2021-06-04 18:48:32 +03:00
|
|
|
export LIBXML_CFLAGS="y"
|
|
|
|
export LIBXML_LIBS="-lxml2"
|
2021-06-04 22:39:11 +03:00
|
|
|
export OPENSSL_CFLAGS="y"
|
|
|
|
export OPENSSL_LIBS="-lssl -lcrypto"
|
2021-06-04 14:01:54 +03:00
|
|
|
export SQLITE_CFLAGS="y"
|
|
|
|
export SQLITE_LIBS="-lsqlite3 -lpthread"
|
2021-06-04 18:48:32 +03:00
|
|
|
export ZLIB_CFLAGS="y"
|
|
|
|
export ZLIB_LIBS="-lz"
|