Browse Source

Add instruction to install dirmngr to Wine README

Closes #3454
3.0.x
Johann Bauer 7 years ago
committed by GitHub
parent
commit
43bb9c566f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      contrib/build-wine/README.md

20
contrib/build-wine/README.md

@ -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`.

Loading…
Cancel
Save