mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 07:40:07 +02:00
29 lines
648 B
Plaintext
29 lines
648 B
Plaintext
DESCRIPTION="php - hypertext preprocessor"
|
|
HOMEPAGE="http://www.php.net"
|
|
SRC_URI="http://php.net/distributions/php-5.3.5.tar.bz2"
|
|
CHECKSUM_MD5="8aaf20c95e91f25c5b6a591e5d6d61b9"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND="dev-libs/libpcre >= 8.00"
|
|
BUILD {
|
|
cd php-5.3.5
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
export LIBS="-lnetwork"
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--with-libxml-dir=`finddir B_COMMON_DIRECTORY` \
|
|
--without-iconv
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd php-5.3.5
|
|
make install INSTALL_ROOT=${DESTDIR}
|
|
}
|
|
|
|
COPYRIGHT="2001-2011 PHP Group"
|
|
LICENSE="PHP License v3.01"
|