talimat 726 B

123456789101112131415161718192021222324252627
  1. # Tanım: Tcp istemci-sunucu uygulamalar üretmek için konsol uygulaması
  2. # URL: http://cr.yp.to/ucspi-tcp.html
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: ağ
  6. isim=ucspi-tcp
  7. surum=0.88
  8. devir=1
  9. kaynak=(http://cr.yp.to/ucspi-tcp/ucspi-tcp-0.88.tar.gz
  10. ucspi-tcp-0.88-ipv6.patch
  11. head-1.patch)
  12. derle() {
  13. cd "$SRC/$isim-$surum"
  14. patch -p0 < "$SRC/head-1.patch"
  15. patch -p1 < "$SRC/ucspi-tcp-$surum-ipv6.patch"
  16. echo "gcc ${CFLAGS}" > conf-cc
  17. echo "/usr" > conf-home
  18. make
  19. for bin in tcpserver tcprules tcprulescheck argv0 recordio \
  20. tcpclient *\@ tcpcat mconnect mconnect-io addcr \
  21. delcr fixcrio rblsmtpd; do
  22. install -m 755 -D $bin "$PKG/usr/bin/$bin"
  23. done
  24. }