contrib/php-xsl/Pkgfile
2011-01-11 21:26:54 +02:00

24 lines
630 B
Plaintext

# 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
version=5.3.5
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
}