2ec6e10c8e
Notable changes: * Prettier >=2.3 with more consistent js assignments * Black now formats docstrings * Added isort to list of autoformaters * Update flake8 config for v4 Ref: https://prettier.io/blog/2021/05/09/2.3.0.html |
||
---|---|---|
.. | ||
README.md | ||
deluge-win-installer.nsi | ||
delugewin.spec | ||
installer-side.bmp | ||
installer-top.bmp | ||
pyi_rth_gtk_csd.py | ||
setup_nsis.py |
README.md
= Deluge Installer for Windows =
Instructions for building the Deluge NSIS Installer for Windows Vista/7/8/8.1/10/11.
== Dependencies ==
- Deluge build: https://deluge.readthedocs.io/en/latest/depends.html
- PyInstaller: https://pypi.org/project/pyinstaller/
- NSIS: http://nsis.sourceforge.net/Download
== Build Steps ==
-
Build and Install Deluge on Windows.
-
Run the pyinstaller from the deluge\packaging\win directory.spec:
pyinstaller --clean delugewin.spec --distpath .\packaging\win\freeze
The result is a PyInstaller version of Deluge in
packaging\win\freeze
. -
Run the NSIS script:
64-bit python:
makensis /Darch=x64 deluge-win-installer.nsi
32-bit python:
makensis /Darch=x86 deluge-win-installer.nsi
Note: If you don't specify arch defaults to trying x64
The result is a standalone installer in the packaging\win
directory.