The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/distrobuilder/pull/358
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) ===
From d3855592d1811e6020d175ed3a7f4f5d9d612d47 Mon Sep 17 00:00:00 2001 From: Alexandre ZANNI <16578570+no...@users.noreply.github.com> Date: Sun, 9 Aug 2020 15:38:09 +0200 Subject: [PATCH] add arch deps --- doc/index.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/index.md b/doc/index.md index 6c9ce7b..5065ea1 100644 --- a/doc/index.md +++ b/doc/index.md @@ -52,10 +52,16 @@ snap install distrobuilder --classic To compile `distrobuilder` from source, first install the Go programming language, and some other dependencies. -``` -sudo apt update -sudo apt install -y golang-go debootstrap rsync gpg squashfs-tools git -``` +- Debian-based: + ``` + sudo apt update + sudo apt install -y golang-go debootstrap rsync gpg squashfs-tools git + ``` +- ArchLinux-based: + ``` + sudo pacman -Syu + sudo pacman -S go debootstrap rsync gnupg squashfs-tools git --needed + ``` Second, download the source code of the `distrobuilder` repository (this repository). The source will be placed in `$HOME/go/src/github.com/lxc/distrobuilder/`
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel