From fdaeea7c6d515583eab480dc6344794d53a45062 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Tue, 12 Sep 2023 18:02:54 +0530 Subject: [PATCH] docs: add pkg names for linux distributions - alpine and rpm based Signed-off-by: Lakshya Singh --- README.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 798bb60a9..1dc1d88f4 100644 --- a/README.md +++ b/README.md @@ -36,15 +36,29 @@ Dependencies ------------ If you are installing from some official [source release tarball](https://github.com/ZmnSCPxj/clboss/releases), -you only need the below packages installed on a Debian or -Debian-derived systems: +you only need the below packages installed. +Debian-derived systems: * `build-essential` * `pkg-config` * `libev-dev` * `libcurl4-gnutls-dev` * `libsqlite3-dev` +RPM-dervied : +* `groupinstall "Development Tools"` +* `pkg-config` +* `libev-devel` +* `libcurl-devel` +* `libsqlite3x-devel` + +Alpine: +* `build-base` +* `pkgconf` +* `libev-dev` +* `curl-dev` +* `sqlite-dev` + Equivalent packages have a good probability of existing in non-Debian-derived distributions as well. @@ -54,8 +68,10 @@ it while building): * `dnsutils` +For alpine linux the package is: `bind-tools`. + If you have to build directly from github.com, you need the below -Debian packages in addition: +Debian/RPM/Alpine packages in addition: * `git` * `automake`