From b085d7cc59281bbba9f395cb6d622f799546358b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 25 Jan 2019 19:14:28 +0100 Subject: [PATCH] document linux release process closes #5030 --- README.rst | 16 ++++++++-------- contrib/build-linux/README.md | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+), 8 deletions(-) create mode 100644 contrib/build-linux/README.md diff --git a/README.rst b/README.rst index 6dfb69940..a6fec0b8f 100644 --- a/README.rst +++ b/README.rst @@ -91,25 +91,25 @@ Create translations (optional):: Creating Binaries ================= +Linux +----- -To create binaries, create the 'packages' directory:: +See :code:`contrib/build-linux/Readme.md`. - ./contrib/make_packages - -This directory contains the python dependencies used by Electrum. Mac OS X / macOS --------- +---------------- + +See :code:`contrib/osx/Readme.md`. -See `contrib/osx/`. Windows ------- -See `contrib/build-wine/`. +See :code:`contrib/build-wine/docker/Readme.md`. Android ------- -See `electrum/gui/kivy/Readme.md` file. +See :code:`electrum/gui/kivy/Readme.md`. diff --git a/contrib/build-linux/README.md b/contrib/build-linux/README.md new file mode 100644 index 000000000..8d45038c4 --- /dev/null +++ b/contrib/build-linux/README.md @@ -0,0 +1,20 @@ +Source tarballs +=============== + +1. Build locale files + + ``` + contrib/make_locale + ``` + +2. Prepare python dependencies used by Electrum. + + ``` + contrib/make_packages + ``` + +3. Create source tarball. + + ``` + contrib/make_tgz + ```