2014-06-26 18:57:28 -04:00
|
|
|
REM use pyinstaller to builder a folder with onionshare.exe
|
|
|
|
pyinstaller -y setup\onionshare-win.spec
|
|
|
|
|
2014-09-24 17:05:53 -04:00
|
|
|
REM sign onionshare.exe
|
|
|
|
signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\onionshare\onionshare.exe
|
|
|
|
|
2014-06-26 18:57:28 -04:00
|
|
|
REM run onionshare once, to compile the .py files into .pyc
|
|
|
|
dist\onionshare\onionshare.exe --help
|
|
|
|
|
|
|
|
REM build an installer, dist\OnionShare_Setup.exe
|
2014-09-24 17:05:53 -04:00
|
|
|
makensisw setup\onionshare.nsi
|
|
|
|
|
|
|
|
REM sign OnionShare_Setup.exe
|
|
|
|
signtool.exe sign /v /d "OnionShare" /a /tr "http://www.startssl.com/timestamp" dist\OnionShare_Setup.exe
|