From 43bb9c566f1e8962a83a2f0cc2ecbf1c7243651c Mon Sep 17 00:00:00 2001 From: Johann Bauer Date: Wed, 6 Dec 2017 18:12:02 +0100 Subject: [PATCH] Add instruction to install dirmngr to Wine README Closes #3454 --- contrib/build-wine/README.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/contrib/build-wine/README.md b/contrib/build-wine/README.md index 49be25c7..b63485e8 100644 --- 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`.