From b5bf2dc625bde51511230702c6656078733d926e Mon Sep 17 00:00:00 2001 From: cosmicpsyop Date: Wed, 8 Nov 2023 08:32:27 -0800 Subject: [PATCH 1/2] feature/freebsd-support-two: add build goal to README. optimize pkg add manifest --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index b72bbc9..fc083d1 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,23 @@ Either the full set of messages in the DB can be synced, or the results of one o A C++20 compiler is required, along with a few other common dependencies. On Debian/Ubuntu use these commands: +#### Linux + sudo apt install -y git build-essential libyaml-perl libtemplate-perl libregexp-grammars-perl libssl-dev zlib1g-dev liblmdb-dev libflatbuffers-dev libsecp256k1-dev libzstd-dev git clone https://github.com/hoytech/strfry && cd strfry/ git submodule update --init make setup-golpe make -j4 +#### FreeBSD + + pkg install gcc gmake cmake git perl5 openssl lmdb flatbuffers libuv libinotify zstr secp256k1 zlib-ng p5-Regexp-Grammars p5-Module-Install-Template p5-YAML + git clone https://github.com/hoytech/strfry && cd strfry/ + git submodule update --init + gmake setup-golpe + gmake -j4 + + ### Running a relay Here is how to run the relay: From d78c83e5b8b18afb905c18cece275a0cb2b8e983 Mon Sep 17 00:00:00 2001 From: cosmicpsyop Date: Wed, 8 Nov 2023 09:03:38 -0800 Subject: [PATCH 2/2] feature/freebsd-support-two: add build goal to README. optimize pkg add manifest --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc083d1..9790e48 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ A C++20 compiler is required, along with a few other common dependencies. On Deb #### FreeBSD - pkg install gcc gmake cmake git perl5 openssl lmdb flatbuffers libuv libinotify zstr secp256k1 zlib-ng p5-Regexp-Grammars p5-Module-Install-Template p5-YAML + pkg install -y gcc gmake cmake git perl5 openssl lmdb flatbuffers libuv libinotify zstr secp256k1 zlib-ng p5-Regexp-Grammars p5-Module-Install-Template p5-YAML git clone https://github.com/hoytech/strfry && cd strfry/ git submodule update --init gmake setup-golpe