aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/RPM-module.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-08-21 01:37:18 +0300
committerGitHub <noreply@github.com>2017-08-21 01:37:18 +0300
commit6fab0430beafed684283468c157ee1f90c8c533d (patch)
treed95b2f4df3bc8c5923dc0e549a5ce2ac0c0d94b5 /docs/markdown/RPM-module.md
parent511a37085647ffbc45c8f8b7c408ef7898fb998d (diff)
parent9b5a5c2e61b3eda633acbe859b0e40e9597dac25 (diff)
downloadmeson-6fab0430beafed684283468c157ee1f90c8c533d.zip
meson-6fab0430beafed684283468c157ee1f90c8c533d.tar.gz
meson-6fab0430beafed684283468c157ee1f90c8c533d.tar.bz2
Merge pull request #2224 from mesonbuild/morealpha
More doc alphabetisation
Diffstat (limited to 'docs/markdown/RPM-module.md')
-rw-r--r--docs/markdown/RPM-module.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/markdown/RPM-module.md b/docs/markdown/RPM-module.md
index 3939937..cab6d96 100644
--- a/docs/markdown/RPM-module.md
+++ b/docs/markdown/RPM-module.md
@@ -1,10 +1,16 @@
# RPM module
-The RPM module can be used to create a sample rpm spec file for a Meson project. It autodetects installed files, dependencies and so on. Using it is very simple. At the very end of your Meson project (that is, the end of your top level `meson.build` file) add these two lines.
+The RPM module can be used to create a sample rpm spec file for a
+Meson project. It autodetects installed files, dependencies and so
+on. Using it is very simple. At the very end of your Meson project
+(that is, the end of your top level `meson.build` file) add these two
+lines.
```meson
rpm = import('rpm')
rpm.generate_spec_template()
```
-Run Meson once on your code and the template will be written in your build directory. Then remove the two lines above and manually edit the template to add missing information. After this it is ready for use.
+Run Meson once on your code and the template will be written in your
+build directory. Then remove the two lines above and manually edit the
+template to add missing information. After this it is ready for use.