talimat 538 B

123456789101112131415161718192021222324252627
  1. # Tanım: Php için Gettext modülü
  2. # URL: http://www.php.net
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: ağ
  6. isim=php-gettext
  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 \
  13. --disable-all \
  14. --with-${name#*-}=shared,/usr
  15. make build-modules
  16. install -d $PKG/etc/php/conf.d
  17. for i in modules/*.so; do
  18. install -D -m755 $i $PKG/usr/lib/php/extensions/${i##*/}
  19. echo extension=/usr/lib/php/extensions/${i##*/} >> $PKG/etc/php/conf.d/${name#php-}.ini
  20. done
  21. }