opt/mod_php/Pkgfile

29 lines
721 B
Plaintext
Raw Normal View History

# Description: PHP DSO module for apache
2006-02-23 16:26:10 +01:00
# URL: http://www.php.net
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
# Depends on: apache libxml2
2006-02-23 16:26:10 +01:00
name=mod_php
version=5.2.6
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build () {
cd php-$version
local PHP_CONFIG="
--prefix=/usr \
--with-config-file-path=/etc/php \
--with-config-file-scan-dir=/etc/php/conf.d \
--disable-static --disable-debug --disable-pear"
EXTENSION_DIR=/usr/lib/php/extensions \
./configure \
$PHP_CONFIG \
--with-apxs2=/usr/sbin/apxs \
--disable-cli
2006-02-23 16:26:10 +01:00
make
install -D -m 755 libs/libphp5.so $PKG/usr/lib/apache/libphp5.so
2006-02-23 16:26:10 +01:00
}