Phil Dawson pushed to branch phil/436-add-ubuntu-install-intructions at BuildStream / buildstream
Commits:
-
05674320
by Phil Dawson at 2018-07-30T11:11:41Z
1 changed file:
Changes:
... | ... | @@ -98,7 +98,32 @@ to get the system requirements for the default plugins installed:: |
98 | 98 |
sudo apt-get install \
|
99 | 99 |
lzip gir1.2-ostree-1.0 git bzr ostree patch python3-arpy python3-gi
|
100 | 100 |
|
101 |
+Ubuntu
|
|
102 |
+++++++
|
|
103 |
+ |
|
104 |
+Ubuntu 17.10 or higher
|
|
105 |
+^^^^^^^^^^^^^^^^^^^^^^
|
|
106 |
+For Ubuntu 17.10 or 18.04, the BuildStram core dependencies can be installed with::
|
|
107 |
+ |
|
108 |
+ sudo apt-get install \
|
|
109 |
+ fuse bubblewrap git python3 python3-pip python3-dev
|
|
110 |
+ |
|
111 |
+To install the dependencies for the default plugins::
|
|
101 | 112 |
|
113 |
+ sudo apt-get install \
|
|
114 |
+ lzip git bzr patch python3-arpy ostree gir1.2-ostree-1.0 python3-gi
|
|
115 |
+ |
|
116 |
+ |
|
117 |
+Ubuntu 17.04 and 16.X
|
|
118 |
+^^^^^^^^^^^^^^^^^^^^^
|
|
119 |
+On Ubuntu 16.X, neither `bubblewrap<https://github.com/projectatomic/bubblewrap/>`
|
|
120 |
+or `ostree<https://github.com/ostreedev/ostree>` are available in the official repositories.
|
|
121 |
+You will need to install them in whichever way you see fit. Refer the the upstream documentation
|
|
122 |
+for advice on this.
|
|
123 |
+ |
|
124 |
+Bubblewrap is available on Ubuntu 17.04, however as with Ubuntu 16.X Ostree is unsuported by the
|
|
125 |
+the official repositories and you will need to install it yourself.
|
|
126 |
+
|
|
102 | 127 |
Fedora
|
103 | 128 |
++++++
|
104 | 129 |
For recent fedora systems, the following line should get you the system
|
... | ... | @@ -197,3 +222,4 @@ from `AUR <https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_ |
197 | 222 |
Alternatively, use
|
198 | 223 |
`buildstream-git <https://aur.archlinux.org/packages/buildstream-git>`_
|
199 | 224 |
for the lastest version of the development branch.
|
225 |
+ |