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
# URL: http://www.php.net
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2013-04-12 17:17:43 +02:00
# Depends on: readline libpcre libxml2 curl db gdbm xz
2008-05-07 19:41:47 +02:00
name=php
version=5.6.19
release=1
2014-09-19 13:27:01 +02:00
source=(http://php.net/distributions/php-$version.tar.xz)
2008-05-07 19:41:47 +02:00
build () {
cd php-$version
local PHP_CONFIG="
--prefix=/usr --mandir=/usr/share/man \
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 \
2008-12-05 11:52:01 +01:00
--with-pcre-regex=/usr \
--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 \
--enable-zip=shared \
--enable-mbstring=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' {zip,bz2,curl,openssl,dba,mbstring}.so \
> $PKG/etc/php/conf.d/extensions.ini
2008-05-07 19:41:47 +02:00
}