summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-03-22 17:53:28 +0000
committerGitHub <noreply@github.com>2022-03-22 17:53:28 +0000
commit34a8c8bc870783611bc1b10f504fcf00f9eaa08e (patch)
treecddfc7d2b9a1ff6d82ece4efa7beee456366e02f
parent8b5cba1a6316405b09ca935c715c22ed8750fa2c (diff)
parent798b87ce3a71188f3d5d50a67191f1ae369e4df9 (diff)
downloadbubblewrap-34a8c8bc870783611bc1b10f504fcf00f9eaa08e.tar.gz
Merge pull request #484 from rusty-snake/install-instructions
Add install instruction to README.md
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
index f7eb85f..a6f84db 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,30 @@ clusters. Having the ability for unprivileged users to use container
features would make it significantly easier to do interactive
debugging scenarios and the like.
+Installation
+------------
+
+bubblewrap is available in the package repositories of the most Linux distributions
+and can be installed from there.
+
+If you need to build bubblewrap from source, you can do this with meson or autotools.
+
+meson:
+
+```
+meson _builddir
+meson compile -C _builddir
+meson install -C _builddir
+```
+
+autotools:
+
+```
+./autogen.sh
+make
+sudo make install
+```
+
Usage
-----