mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
32 lines
1 KiB
Bash
Executable file
32 lines
1 KiB
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=php
|
|
useconfigure="true"
|
|
version="8.0.8"
|
|
files="https://www.php.net/distributions/php-${version}.tar.xz php-${version}.tar.xz dc1668d324232dec1d05175ec752dade92d29bb3004275118bc3f7fc7cbfbb1c"
|
|
auth_type=sha256
|
|
depends="libiconv libxml2 openssl readline sqlite zlib"
|
|
configopts="
|
|
--disable-opcache
|
|
--prefix=${SERENITY_INSTALL_ROOT}/usr/local
|
|
--with-iconv=${SERENITY_INSTALL_ROOT}/usr/local
|
|
--with-openssl
|
|
--with-readline=${SERENITY_INSTALL_ROOT}/usr/local
|
|
--with-zlib
|
|
--without-pcre-jit
|
|
"
|
|
launcher_name="PHP"
|
|
launcher_category="Development"
|
|
launcher_command="/usr/local/bin/php -a"
|
|
launcher_run_in_terminal="true"
|
|
icon_file="win32/build/php.ico"
|
|
|
|
export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2"
|
|
export LIBS="-ldl"
|
|
export LIBXML_CFLAGS="y"
|
|
export LIBXML_LIBS="-lxml2"
|
|
export OPENSSL_CFLAGS="y"
|
|
export OPENSSL_LIBS="-lssl -lcrypto"
|
|
export SQLITE_CFLAGS="y"
|
|
export SQLITE_LIBS="-lsqlite3 -lpthread"
|
|
export ZLIB_CFLAGS="y"
|
|
export ZLIB_LIBS="-lz"
|