From b3f72f9eed0af2057182e20d920a6fa0b64d74c9 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Tue, 13 Jun 2023 16:32:16 +0200 Subject: [PATCH] fix(docs): Fix instructions for installing cln on FreeBSD This commit is adding the instructions for compiling cln on FreeBSD, because it looks that we not longer compile with the FreeBSD package manager, and I have no idea who the mantainer of this package is. Link: https://github.com/ElementsProject/lightning/issues/6301 Reported-by: @bektar Changelog-None Signed-off-by: Vincenzo Palazzo --- doc/INSTALL.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/INSTALL.md b/doc/INSTALL.md index ed13e599b..df2e17b1b 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -167,7 +167,18 @@ To Build on FreeBSD OS version: FreeBSD 11.1-RELEASE or above -Core Lightning is in the FreeBSD ports, so install it as any other port +``` +pkg install git python py39-pip gmake libtool gmp sqlite3 \ + postgresql13-client gettext autotools +https://github.com/ElementsProject/lightning.git +pip install --upgrade pip +pip3 install mako +./configure +gmake -j$(nproc) +gmake install +``` + +Alternately, Core Lightning is in the FreeBSD ports, so install it as any other port (dependencies are handled automatically): # pkg install c-lightning