Merge pull request #3458 from bauerj/patch-3

Add instruction to install dirmngr to Wine README
This commit is contained in:
ThomasV 2017-12-07 09:26:14 +01:00 committed by GitHub
commit 2951ed5e17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 5 deletions

View File

@ -1,15 +1,25 @@
Windows Binary Builds
=====================
These scripts can be used for cross-compilation of Windows Electrum executables from Linux/Wine.
Produced binaries are deterministic so you should be able to generate binaries that match the official releases.
Usage:
1. Install Wine 2, e.g.
1. Install the following dependencies:
- dirmngr
- gpg
- Wine (>= v2)
For example:
```
$ sudo apt-get install wine-development
$ sudo apt-get install wine-development dirmngr gnupg2
$ sudo ln -sf /usr/bin/wine-development /usr/local/bin/wine
$ wine --version
wine-2.0 (Debian 2.0-3+b2)
@ -18,11 +28,11 @@ $ wine --version
or
```
$ pacman -S wine
$ pacman -S wine gnupg
$ wine --version
wine-2.21
```
2. Make sure `/opt` is writable by the current user.
3. Run `build.sh`.
4. The generated binaries are in `dist`.
4. The generated binaries are in `./dist`.