Commit 36d467cc45c6e45dad02fc349c936738abfc9ff8
1 parent
8df4d42a
Exists in
master
and in
90 other branches
a few extra very basic instructions
Showing
1 changed file
with
20 additions
and
3 deletions
Show diff stats
README.md
1 | 1 | # Quick start |
2 | 2 | |
3 | -- install `mr` (`apt-get install mr`) | |
4 | -- echo $(pwd)/.mrconfig >> ~/.mrtrust | |
5 | -- mr checkout | |
3 | +To clone all the sub-projects: | |
4 | + | |
5 | +``` | |
6 | +$ install `mr` (`apt-get install mr`) | |
7 | +$ echo $(pwd)/.mrconfig >> ~/.mrtrust | |
8 | +$ mr checkout | |
9 | +``` | |
10 | + | |
11 | +To build packages: | |
12 | + | |
13 | +``` | |
14 | +$ make | |
15 | +``` | |
16 | + | |
17 | +To add a new subproject: | |
18 | + | |
19 | +- edit `.mrconfig` and add a new section for the project (base it on the | |
20 | + existing sections for the existing subprojects) | |
21 | +- add a new .spec.in file for the project in rpm/$PROJECT.spec.in | |
22 | +- that's all | ... | ... |