|
@@ -1,95 +0,0 @@
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-rm -rf win_tmp
|
|
|
-mkdir win_tmp
|
|
|
-mkdir win_tmp/bin
|
|
|
-mkdir win_tmp/contrib
|
|
|
-mkdir win_tmp/doc
|
|
|
-mkdir win_tmp/doc/spec
|
|
|
-mkdir win_tmp/doc/design-paper
|
|
|
-mkdir win_tmp/doc/contrib
|
|
|
-mkdir win_tmp/src
|
|
|
-mkdir win_tmp/src/config
|
|
|
-mkdir win_tmp/tmp
|
|
|
-
|
|
|
-cp src/or/tor.exe win_tmp/bin/
|
|
|
-cp src/tools/tor-resolve.exe win_tmp/bin/
|
|
|
-cp contrib/win32build/tor.ico win_tmp/bin/
|
|
|
-cp src/config/geoip win_tmp/bin/
|
|
|
-strip win_tmp/bin/*.exe
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-clean_newlines() {
|
|
|
- perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg;' $1 >$2
|
|
|
-}
|
|
|
-
|
|
|
-clean_localstatedir() {
|
|
|
- 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
|
|
|
-}
|
|
|
-
|
|
|
-for fn in address-spec.txt bridges-spec.txt control-spec.txt dir-spec.txt path-spec.txt rend-spec.txt socks-extensions.txt tor-spec.txt version-spec.txt; do
|
|
|
- clean_newlines doc/spec/$fn win_tmp/doc/spec/$fn
|
|
|
-done
|
|
|
-
|
|
|
-for fn in HACKING tor-gencert.html tor.html torify.html tor-resolve.html; do
|
|
|
- clean_newlines doc/$fn win_tmp/doc/$fn
|
|
|
-done
|
|
|
-
|
|
|
-for fn in README ChangeLog LICENSE; do
|
|
|
- clean_newlines $fn win_tmp/$fn
|
|
|
-done
|
|
|
-
|
|
|
-clean_localstatedir src/config/torrc.sample.in win_tmp/src/config/torrc.sample
|
|
|
-
|
|
|
-cp contrib/win32build/tor-mingw.nsi.in win_tmp/contrib/
|
|
|
-
|
|
|
-cd win_tmp
|
|
|
-makensis.exe contrib/tor-mingw.nsi.in
|
|
|
-
|