talimat 822 B

123456789101112131415161718192021222324252627282930
  1. # Tanım: Hızlı,güvenli ve esnek web sunucu uygulaması
  2. # URL: http://www.lighttpd.net/
  3. # Paketçi: milisarge
  4. # Gerekler: pcre
  5. # Grup: ağ
  6. isim=lighttpd
  7. surum=1.4.45
  8. devir=1
  9. kaynak=(http://download.$isim.net/$isim/releases-1.4.x/$isim-$surum.tar.xz \
  10. $isim.conf )
  11. derle() {
  12. cd $isim-$surum
  13. ./configure --prefix=/usr --libdir=/usr/lib/$isim --with-openssl \
  14. --mandir=/usr/man --with-pcre
  15. make
  16. make DESTDIR=$PKG install
  17. install -D -m 644 $SRC/$isim.conf $PKG/etc/$isim.conf
  18. install -d $PKG/var/www/{htdocs,logs}
  19. install -d $PKG/var/run
  20. install -d $PKG/etc/ssl/certs
  21. #touch $PKG/var/run/lighttpd.pid
  22. touch $PKG/etc/ssl/certs/lighttpd.pem
  23. chmod 0600 $PKG/etc/ssl/certs/lighttpd.pem
  24. cd /sources/milis.git/ayarlar/servisler
  25. make DESTDIR=$PKG kur-lighttpd
  26. }