Add instruction to install dirmngr to Wine README

Closes #3454
This commit is contained in:
Johann Bauer 2017-12-06 18:12:02 +01:00 committed by GitHub
parent 0aee9bbbb0
commit 43bb9c566f
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 Windows Binary Builds
===================== =====================
These scripts can be used for cross-compilation of Windows Electrum executables from Linux/Wine. 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. Produced binaries are deterministic so you should be able to generate binaries that match the official releases.
Usage: 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 $ sudo ln -sf /usr/bin/wine-development /usr/local/bin/wine
$ wine --version $ wine --version
wine-2.0 (Debian 2.0-3+b2) wine-2.0 (Debian 2.0-3+b2)
@ -18,11 +28,11 @@ $ wine --version
or or
``` ```
$ pacman -S wine $ pacman -S wine gnupg
$ wine --version $ wine --version
wine-2.21 wine-2.21
``` ```
2. Make sure `/opt` is writable by the current user. 2. Make sure `/opt` is writable by the current user.
3. Run `build.sh`. 3. Run `build.sh`.
4. The generated binaries are in `dist`. 4. The generated binaries are in `./dist`.