summaryrefslogtreecommitdiff
path: root/php-xsl/Pkgfile
blob: afc249b367a4728df5a526a841ee9a32b81d3c52 (plain)
    1 # Description: Implements the XSL standard, performing XSLT transformations using the libxslt library
    2 # URL: http://www.php.net
    3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
    4 # Depends on: libxslt
    5 
    6 name=php-xsl
    7 version=5.3.8
    8 release=1
    9 source=(http://www.php.net/distributions/php-$version.tar.bz2)
   10 
   11 build() {
   12 	cd php-$version
   13 
   14 	./configure --disable-all \
   15 				--enable-libxml \
   16 				--enable-dom \
   17 				--with-xsl=shared,/usr
   18 	make build-modules
   19 
   20 	install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
   21 	install -m 755 modules/xsl.so $PKG/usr/lib/php/extensions
   22 	echo "extension=xsl.so" > $PKG/etc/php/conf.d/xsl.ini
   23 }

Generated by cgit