contrib/php-xsl/Pkgfile

24 lines
630 B
Plaintext
Raw Normal View History

2009-02-16 15:17:32 +01:00
# Description: Implements the XSL standard, performing XSLT transformations using the libxslt library
# URL: http://www.php.net
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on: libxslt
name=php-xsl
2011-01-11 20:26:54 +01:00
version=5.3.5
2009-02-16 15:17:32 +01:00
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)
build() {
cd php-$version
./configure --disable-all \
--enable-libxml \
--enable-dom \
--with-xsl=shared,/usr
make build-modules
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
install -m 755 modules/xsl.so $PKG/usr/lib/php/extensions
echo "extension=xsl.so" > $PKG/etc/php/conf.d/xsl.ini
}