From fd57e9db6e6f71f20b76251556c4ac21b03803f8 Mon Sep 17 00:00:00 2001 From: Sfinktah Bungholio Date: Mon, 19 Sep 2022 17:32:26 +1000 Subject: [PATCH 1/3] added apt-get for some reqs in ubuntu --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9e20d2b9a..d1bf78713 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ Then run the usual autoconfigure style build (you may need to use ```sudo``` to make make install +There are various dependencies that may be satisfied on Ubuntu by installing these packages as follows: + + sudo apt install libboost1.71-all-dev gperf uuid-dev python3-sphinx + You can also run ```make test``` before installing to make sure everything checks out ok. You can also streamline the process of building and testing by running: From b3c6fde1506e36378b211669be2375cd5ae6654f Mon Sep 17 00:00:00 2001 From: Sfinktah Bungholio Date: Fri, 23 Sep 2022 16:39:04 +1000 Subject: [PATCH 2/3] added ubuntu 20.04 requirements from PR #327 --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1bf78713..ad07e774e 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,11 @@ Then run the usual autoconfigure style build (you may need to use ```sudo``` to make make install -There are various dependencies that may be satisfied on Ubuntu by installing these packages as follows: +There are various dependencies that may be satisfied on Ubuntu 20.04 by installing these packages: - sudo apt install libboost1.71-all-dev gperf uuid-dev python3-sphinx + sudo apt install automake autoconf libtool make curl gcc g++ git gperf \ + libssl-dev libboost-all-dev libevent-dev libhiredis-dev libpq-dev \ + libtokyocabinet-dev tcsh python3-sphinx uuid-dev wget You can also run ```make test``` before installing to make sure everything checks out ok. You can also streamline the process of building and testing by running: From 66a49bc81a971a543c63429cbb6cb97cbf946755 Mon Sep 17 00:00:00 2001 From: sfinktah Date: Sat, 18 Mar 2023 17:49:43 +1100 Subject: [PATCH 3/3] removed tcsh and wget from ubuntu packages --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad07e774e..3454232d9 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,11 @@ Then run the usual autoconfigure style build (you may need to use ```sudo``` to make make install -There are various dependencies that may be satisfied on Ubuntu 20.04 by installing these packages: +There are various dependencies that may be satisfied on Ubuntu by installing these packages: sudo apt install automake autoconf libtool make curl gcc g++ git gperf \ libssl-dev libboost-all-dev libevent-dev libhiredis-dev libpq-dev \ - libtokyocabinet-dev tcsh python3-sphinx uuid-dev wget + libtokyocabinet-dev python3-sphinx uuid-dev You can also run ```make test``` before installing to make sure everything checks out ok. You can also streamline the process of building and testing by running: