diff options
author | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-03-29 15:03:43 -0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-04-26 17:56:33 +0300 |
commit | b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f (patch) | |
tree | 6e1a3c34b1a85479d3b9f42ccd071096e637929b /docs/markdown/Getting-meson.md | |
parent | 7dc747ea54480c452b913e4bfe682ec67061c9bf (diff) | |
download | meson-b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f.zip meson-b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f.tar.gz meson-b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f.tar.bz2 |
docs: Import the website and wiki and build with hotdoc
This allows us to more easily have the documentation in sync with
the source code as people will have to document new features etc
right at the time where they implement it.
Diffstat (limited to 'docs/markdown/Getting-meson.md')
-rw-r--r-- | docs/markdown/Getting-meson.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/markdown/Getting-meson.md b/docs/markdown/Getting-meson.md new file mode 100644 index 0000000..f28a7e2 --- /dev/null +++ b/docs/markdown/Getting-meson.md @@ -0,0 +1,28 @@ +# Getting meson + +## Downloading Meson + +Meson releases can be downloaded from the [Github release page]. + +Meson is also available in the [Python Package Index] and can be +installed with <tt>pip3 install meson</tt>. + +The newest development code can be obtained directly from [Git] + +## Dependencies + +Meson is implemented in Python 3. If your operating system provides a +package manager, use should install it with that. For platforms that +don't have a package manager, you need to download it from [Python's +home page]. + +Depending on your platform and backend you wish to use, you might need +the [Ninja executable]. Again, use your distro-provided version if +possible. Otherwise download it from Ninja project's web site. + + [Github release page]: https://github.com/jpakkane/meson/releases + [Python Package Index]: https://pypi.python.org/pypi/meson/ + [Git]: https://github.com/jpakkane/meson + [Python's home page]: https://www.python.org/downloads/ + [Ninja executable]: https://ninja-build.org/ + |