talimat 563 B

1234567891011121314151617181920212223242526
  1. # Tanım: p0f, tcp-ip trafik akışını takip ve dinleme uygulaması
  2. # URL: http://lcamtuf.coredump.cx/p0f3/
  3. # Paketçi: milisarge
  4. # Gerekler: libpcap
  5. # Grup: güvenlik
  6. isim=p0f
  7. surum=3.09b
  8. devir=1
  9. kaynak=(http://lcamtuf.coredump.cx/p0f3/releases/p0f-3.09b.tgz)
  10. derle() {
  11. cd $isim-$surum
  12. install -d $PKG/usr/bin
  13. install -d $PKG/usr/share/$isim
  14. install -d $PKG/etc
  15. make
  16. cd tools
  17. make
  18. cd ..
  19. cp p0f tools/p0f-client tools/p0f-sendsyn tools/p0f-sendsyn6 $PKG/usr/bin/
  20. cp docs/* $PKG/usr/share/$isim/
  21. cp p0f.fp $PKG/etc/p0f
  22. }