2014-06-26 18:57:28 -04:00
|
|
|
REM use pyinstaller to builder a folder with onionshare.exe
|
2015-05-15 16:03:04 -04:00
|
|
|
pyinstaller -y install\onionshare-win.spec
|
2014-06-26 18:57:28 -04:00
|
|
|
|
2014-09-24 17:05:53 -04:00
|
|
|
REM sign onionshare.exe
|
2015-05-18 20:04:26 -04:00
|
|
|
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll dist\onionshare\onionshare.exe
|
2014-09-24 17:05:53 -04:00
|
|
|
|
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
|
2015-05-15 16:03:04 -04:00
|
|
|
makensisw install\onionshare.nsi
|
2014-09-24 17:05:53 -04:00
|
|
|
|
|
|
|
REM sign OnionShare_Setup.exe
|
2015-05-18 20:04:26 -04:00
|
|
|
signtool.exe sign /v /d "OnionShare" /a /tr http://timestamp.globalsign.com/scripts/timstamp.dll dist\OnionShare_Setup.exe
|