package_nsis.sh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #!/bin/sh
  2. #
  3. # Script to package a Tor installer on win32. This script assumes that
  4. # you have already built Tor, that you are running cygwin, and that your
  5. # environment is basically exactly the same as Nick's.
  6. # This file is obsolete.
  7. rm -rf win_tmp
  8. mkdir win_tmp
  9. mkdir win_tmp/bin
  10. mkdir win_tmp/contrib
  11. mkdir win_tmp/doc
  12. mkdir win_tmp/doc/design-paper
  13. mkdir win_tmp/doc/contrib
  14. mkdir win_tmp/src
  15. mkdir win_tmp/src/config
  16. mkdir win_tmp/tmp
  17. cp Win32Build/vc7/Tor/Debug/Tor.exe win_tmp/bin/tor.exe
  18. cp Win32Build/vc7/tor_resolve/Debug/tor_resolve.exe win_tmp/bin
  19. cp c:/windows/system32/libeay32.dll win_tmp/bin
  20. cp c:/windows/system32/ssleay32.dll win_tmp/bin
  21. man2html doc/tor.1.in > win_tmp/tmp/tor-reference.html
  22. man2html doc/tor-resolve.1 > win_tmp/tmp/tor-resolve.html
  23. clean_newlines() {
  24. perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg;' $1 >$2
  25. }
  26. clean_localstatedir() {
  27. perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg; s{\@LOCALSTATEDIR\@/(lib|log)/tor/}{C:\\Documents and Settings\\Application Data\\Tor\\}' $1 >$2
  28. }
  29. for fn in tor-spec.txt HACKING rend-spec.txt control-spec.txt \
  30. tor-doc.html tor-doc.css version-spec.txt; do
  31. clean_newlines doc/$fn win_tmp/doc/$fn
  32. done
  33. cp doc/design-paper/tor-design.pdf win_tmp/doc/design-paper/tor-design.pdf
  34. for fn in tor-reference.html tor-resolve.html; do \
  35. clean_newlines win_tmp/tmp/$fn win_tmp/doc/$fn
  36. done
  37. for fn in README AUTHORS ChangeLog LICENSE; do \
  38. clean_newlines $fn win_tmp/$fn
  39. done
  40. clean_localstatedir src/config/torrc.sample.in win_tmp/src/config/torrc.sample
  41. cp contrib/tor.nsi win_tmp/contrib
  42. cd win_tmp/contrib
  43. makensis tor.nsi
  44. mv tor-*.exe ../..