Skip to content
Snippets Groups Projects
Unverified Commit 8bac4661 authored by Maxim Cournoyer's avatar Maxim Cournoyer
Browse files

doc: Replace mentions of make-ring.py by build.py.

* README.rst <make-ring.py>: Replace by build.py.
* docs/source/dev/compiling_and_installing/ring-project.rst: Likewise.
* build.py: Replace 'Ring' by 'Jami'.

Change-Id: I0231ddf541b2622f6042a12ed3ac7ad724b317ae
parent b87dfe4c
No related branches found
No related tags found
No related merge requests found
jami-project
============
This repository is the master repository for Jami. It contains a build script, make-ring.py,
This repository is the master repository for Jami. It contains a build script, build.py,
that can be used to build and install ring from source on different platforms.
More documentation can be found on http://docs.jami.net. You may also build the documentation
......@@ -20,7 +20,7 @@ Initialize the repositories
.. code-block:: bash
./make-ring.py --init
./build.py --init
It initializes and updates the submodules to set them at the top of their master branch. This
is ideal to have the latest development version.
......@@ -38,7 +38,7 @@ On Linux
.. code-block:: bash
./make-ring.py --dependencies
./build.py --dependencies
Your distribution's package manager will be used.
......@@ -46,13 +46,13 @@ Your distribution's package manager will be used.
.. code-block:: bash
./make-ring.py --install
./build.py --install
3. Run daemon and client that were installed locally:
.. code-block:: bash
./make-ring.py --run
./build.py --run
You can then stop the processes with CTRL-C.
......@@ -63,7 +63,7 @@ Install globally for all users instead
.. code-block:: bash
./make-ring.py --install --global-install
./build.py --install --global-install
Run global install:
......@@ -77,7 +77,7 @@ Uninstall the global install:
.. code-block:: bash
./make-ring.py --uninstall
./build.py --uninstall
On OSX
------
......@@ -88,14 +88,14 @@ Build and install all the dependencies:
.. code-block:: bash
./make-ring.py --dependencies
./build.py --dependencies
Build and install locally under this repository:
.. code-block:: bash
./make-ring.py --install
./build.py --install
Output
''''''
......@@ -111,7 +111,7 @@ Build and install locally under this repository:
.. code-block:: bash
./make-ring.py --install --distribution=Android
./build.py --install --distribution=Android
Output
''''''
......
#!/usr/bin/env python3
#
# This is the Ring build helper, it can do these things:
# - Build Ring
# - Install Ring
# - Run Ring
# This is the Jami build helper, it can do these things:
# - Build Jami
# - Install Jami
# - Run Jami
#
import argparse
......
......@@ -11,7 +11,7 @@ Initialize the repositories
.. code-block:: bash
./make-ring.py --init
./build.py --init
It initializes and updates the submodules to set them at the top of their master branch. This
is ideal to have the latest development version.
......@@ -29,7 +29,7 @@ On Linux
.. code-block:: bash
./make-ring.py --dependencies
./build.py --dependencies
Your distribution's package manager will be used.
......@@ -37,13 +37,13 @@ Your distribution's package manager will be used.
.. code-block:: bash
./make-ring.py --install
./build.py --install
3. Run daemon and client that were installed locally:
.. code-block:: bash
./make-ring.py --run
./build.py --run
You can then stop the processes with CTRL-C.
......@@ -54,7 +54,7 @@ Install globally for all users instead
.. code-block:: bash
./make-ring.py --install --global-install
./build.py --install --global-install
Run global install:
......@@ -68,7 +68,7 @@ Uninstall the global install:
.. code-block:: bash
./make-ring.py --uninstall
./build.py --uninstall
On OSX
######
......@@ -79,14 +79,14 @@ Build and install all the dependencies:
.. code-block:: bash
./make-ring.py --dependencies
./build.py --dependencies
Build and install locally under this repository:
.. code-block:: bash
./make-ring.py --install
./build.py --install
Output
------
......@@ -102,7 +102,7 @@ Build and install locally under this repository:
.. code-block:: bash
./make-ring.py --install --distribution=Android
./build.py --install --distribution=Android
Output
------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment