2018-06-09 00:06:58 +02:00
|
|
|
|
# Tanım: libxslt kütüphanesi kullanılarak xslt php uyarlaması
|
|
|
|
|
# URL: http://www.php.net
|
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: libxslt
|
2018-07-31 10:00:34 +02:00
|
|
|
|
# Grup: ağ
|
2018-06-09 00:06:58 +02:00
|
|
|
|
|
|
|
|
|
isim=php-xsl
|
|
|
|
|
surum=5.6.31
|
|
|
|
|
devir=1
|
|
|
|
|
kaynak=(http://www.php.net/distributions/php-$surum.tar.xz)
|
|
|
|
|
|
|
|
|
|
derle() {
|
|
|
|
|
cd php-$surum
|
|
|
|
|
|
|
|
|
|
./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
|
|
|
|
|
}
|