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
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=php-xsl
|
|
|
|
|
surum=5.6.31
|
|
|
|
|
devir=1
|
|
|
|
|
kaynak=(http://www.php.net/distributions/php-$surum.tar.xz)
|
2017-03-27 20:22:33 +02:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd php-$surum
|
2017-03-27 20:22:33 +02:00
|
|
|
|
|
|
|
|
|
./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
|
|
|
|
|
}
|