opt/php/Pkgfile

53 lines
1.4 KiB
Plaintext
Raw Normal View History

2008-05-07 19:41:47 +02:00
# Description: PHP interpreter, extension modules and support stuff
2020-06-06 13:00:05 +02:00
# URL: https://www.php.net
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: bzip2 libpcre2 libxml2 curl db gdbm
2008-05-07 19:41:47 +02:00
name=php
2020-06-12 12:19:20 +02:00
version=7.4.7
release=1
2020-06-06 13:00:05 +02:00
source=(https://php.net/distributions/php-$version.tar.xz)
2008-05-07 19:41:47 +02:00
build () {
cd php-$version
local PHP_CONFIG="
2018-03-30 12:49:11 +02:00
--prefix=/usr \
--mandir=/usr/share/man \
--localstatedir=/var \
2008-05-07 19:41:47 +02:00
--with-config-file-path=/etc/php \
--with-config-file-scan-dir=/etc/php/conf.d \
2008-07-09 09:59:27 +02:00
--with-zlib \
--with-external-pcre \
--disable-static --disable-debug \
--without-sqlite3 --without-pdo-sqlite \
--without-pear"
2008-05-07 19:41:47 +02:00
local PHP_SHARED="
--enable-dba=shared --with-gdbm --with-db4 \
--with-bz2=shared \
--with-curl=shared \
--with-openssl=shared"
2008-05-07 19:41:47 +02:00
EXTENSION_DIR=/usr/lib/php/extensions \
./configure \
$PHP_CONFIG \
$PHP_SHARED \
--enable-cli \
--disable-cgi \
--with-readline
make
make -j1 INSTALL_ROOT=$PKG install
rm $PKG/usr/lib/php/extensions/*.a
ln -sf phar.phar $PKG/usr/bin/phar
2008-05-07 19:41:47 +02:00
sed -i '/^extension_dir/s|=.*$|= "/usr/lib/php/extensions"|' php.ini-*
2008-05-07 19:41:47 +02:00
install -d $PKG/etc/php/conf.d
install -m 644 php.ini-* $PKG/etc/php
# order matters !
printf 'extension=%s\n' {bz2,curl,openssl,dba}.so \
> $PKG/etc/php/conf.d/extensions.ini
2008-05-07 19:41:47 +02:00
}