2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: libxslt kütüphanesi kullanılarak xslt php uyarlaması
|
2017-03-27 20:22:33 +02:00
|
|
|
|
# URL: http://www.php.net
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: libxslt
|
2017-03-27 20:22:33 +02:00
|
|
|
|
|
|
|
|
|
name=php-xsl
|
2017-07-07 14:16:02 +02:00
|
|
|
|
version=5.6.31
|
2017-03-27 20:22:33 +02:00
|
|
|
|
release=1
|
2017-03-27 20:26:16 +02:00
|
|
|
|
source=(http://www.php.net/distributions/php-$version.tar.xz)
|
2017-03-27 20:22:33 +02:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-03-27 20:22:33 +02:00
|
|
|
|
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
|
|
|
|
|
}
|