package_nsis.sh 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. rm -rf win_tmp
  7. mkdir win_tmp
  8. mkdir win_tmp/bin
  9. mkdir win_tmp/contrib
  10. mkdir win_tmp/doc
  11. mkdir win_tmp/doc/design-paper
  12. mkdir win_tmp/doc/contrib
  13. mkdir win_tmp/src
  14. mkdir win_tmp/src/config
  15. mkdir win_tmp/tmp
  16. cp Win32Build/vc7/Tor/Debug/Tor.exe win_tmp/bin/tor.exe
  17. cp Win32Build/vc7/tor_resolve/Debug/tor_resolve.exe win_tmp/bin
  18. cp c:/windows/system32/libeay32.dll win_tmp/bin
  19. cp c:/windows/system32/ssleay32.dll win_tmp/bin
  20. man2html doc/tor.1.in > win_tmp/tmp/tor-reference.html
  21. man2html doc/tor-resolve.1 > win_tmp/tmp/tor-resolve.html
  22. clean_newlines() {
  23. perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg;' $1 >$2
  24. }
  25. clean_localstatedir() {
  26. 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
  27. }
  28. for fn in tor-spec.txt HACKING rend-spec.txt control-spec.txt \
  29. tor-doc.html tor-doc.css version-spec.txt; do
  30. clean_newlines doc/$fn win_tmp/doc/$fn
  31. done
  32. cp doc/design-paper/tor-design.pdf win_tmp/doc/design-paper/tor-design.pdf
  33. for fn in tor-reference.html tor-resolve.html; do \
  34. clean_newlines win_tmp/tmp/$fn win_tmp/doc/$fn
  35. done
  36. for fn in README AUTHORS ChangeLog LICENSE; do \
  37. clean_newlines $fn win_tmp/$fn
  38. done
  39. clean_localstatedir src/config/torrc.sample.in win_tmp/src/config/torrc.sample
  40. cp contrib/tor.nsi win_tmp/contrib
  41. cd win_tmp/contrib
  42. makensis tor.nsi
  43. mv tor-*.exe ../..