commit 2951ed5e17dbd4d96a2f03093dd46caee4393298
parent 4e60cedea9c295b2c2fa62b94d20eba3c515e5d9
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 7 Dec 2017 09:26:14 +0100
Merge pull request #3458 from bauerj/patch-3
Add instruction to install dirmngr to Wine README
Diffstat:
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/contrib/build-wine/README.md b/contrib/build-wine/README.md
@@ -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`.