From cab89b9b9c43c8ba555ac7c8aae846e5c27109b0 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Sun, 4 Jun 2017 16:02:38 +0530 Subject: [PATCH] docs(README): add build dependencies for fedora Two more packages are needed to locally build skopeo on fedora viz. btrfs-progs-devel & device-mapper-devel, so added them in README. Signed-off-by: Suraj Deshmukh --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a055fe57..fb95c694 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ To build the manual you will need go-md2man. ```sh $ sudo apt-get install go-md2man ``` -To build the `skopeo` binary you need at least Go 1.5 because it uses the latest `GO15VENDOREXPERIMENT` flag. Also, make sure to clone the repository in your `GOPATH` - otherwise compilation fails. +To build the `skopeo` binary you need at least Go 1.5 because it uses the latest `GO15VENDOREXPERIMENT` flag. Also, make sure to clone the repository in your `GOPATH` - otherwise compilation fails. ```sh $ git clone https://github.com/projectatomic/skopeo $GOPATH/src/github.com/projectatomic/skopeo $ cd $GOPATH/src/github.com/projectatomic/skopeo && make all @@ -121,7 +121,7 @@ $ make binary-local You may need to install additional development packages: `gpgme-devel` and `libassuan-devel` ```sh -$ dnf install gpgme-devel libassuan-devel +$ sudo dnf install gpgme-devel libassuan-devel btrfs-progs-devel device-mapper-devel ``` Installing -