package_nsis-mingw.sh 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 msys/mingw, and that
  5. # you know what you are doing.
  6. # Start in the tor source directory after you've compiled tor.exe
  7. # This means start as ./contrib/package_nsis-mingw.sh
  8. rm -rf win_tmp
  9. mkdir win_tmp
  10. mkdir win_tmp/bin
  11. mkdir win_tmp/contrib
  12. mkdir win_tmp/doc
  13. mkdir win_tmp/doc/design-paper
  14. mkdir win_tmp/doc/contrib
  15. mkdir win_tmp/src
  16. mkdir win_tmp/src/config
  17. mkdir win_tmp/tmp
  18. cp src/or/tor.exe win_tmp/bin/
  19. cp src/tools/tor-resolve.exe win_tmp/bin/
  20. cp /usr/local/ssl/lib/libcrypto.a win_tmp/bin/
  21. cp /usr/local/ssl/lib/libssl.a win_tmp/bin/
  22. # There is no man2html in mingw.
  23. # Maybe we should add this into make dist instead.
  24. # One has to do this manually and cp it do the tor-source/doc dir
  25. #man2html doc/tor.1.in > win_tmp/tmp/tor-reference.html
  26. #man2html doc/tor-resolve.1 > win_tmp/tmp/tor-resolve.html
  27. clean_newlines() {
  28. perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg;' $1 >$2
  29. }
  30. clean_localstatedir() {
  31. 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
  32. }
  33. for fn in socks-extensions.txt dir-spec.txt tor-spec.txt HACKING rend-spec.txt control-spec.txt tor-doc.html tor-doc.css version-spec.txt; do
  34. clean_newlines doc/$fn win_tmp/doc/$fn
  35. done
  36. cp doc/design-paper/tor-design.pdf win_tmp/doc/design-paper/tor-design.pdf
  37. for fn in tor-reference.html tor-resolve.html; do
  38. clean_newlines doc/$fn win_tmp/doc/$fn
  39. done
  40. for fn in README AUTHORS ChangeLog LICENSE; do
  41. clean_newlines $fn win_tmp/$fn
  42. done
  43. clean_localstatedir src/config/torrc.sample.in win_tmp/src/config/torrc.sample
  44. cp contrib/tor-mingw.nsi win_tmp/contrib/
  45. cd win_tmp
  46. "C:\Program Files\NSIS\makensis.exe" contrib/tor-mingw.nsi