talimat 560 B

12345678910111213141516171819202122232425
  1. # Tanım: libxslt kütüphanesi kullanılarak xslt php uyarlaması
  2. # URL: http://www.php.net
  3. # Paketçi: milisarge
  4. # Gerekler: libxslt
  5. # Grup: ağ
  6. isim=php-xsl
  7. surum=5.6.31
  8. devir=1
  9. kaynak=(http://www.php.net/distributions/php-$surum.tar.xz)
  10. derle() {
  11. cd php-$surum
  12. ./configure --disable-all \
  13. --enable-libxml \
  14. --enable-dom \
  15. --with-xsl=shared,/usr
  16. make build-modules
  17. install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
  18. install -m 755 modules/xsl.so $PKG/usr/lib/php/extensions
  19. echo "extension=xsl.so" > $PKG/etc/php/conf.d/xsl.ini
  20. }