moved build scripts into install folder (#181)

This commit is contained in:
Micah Lee 2015-05-15 13:03:04 -07:00
parent 669750be37
commit 245ddd0300
18 changed files with 29 additions and 21 deletions

14
install/build_exe.bat Normal file
View file

@ -0,0 +1,14 @@
REM use pyinstaller to builder a folder with onionshare.exe
pyinstaller -y install\onionshare-win.spec
REM sign onionshare.exe
signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\onionshare\onionshare.exe
REM run onionshare once, to compile the .py files into .pyc
dist\onionshare\onionshare.exe --help
REM build an installer, dist\OnionShare_Setup.exe
makensisw install\onionshare.nsi
REM sign OnionShare_Setup.exe
signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\OnionShare_Setup.exe