@@ -127,7 +127,7 @@ Install dependencies:
127127Download and install from source:
128128
129129```
130- git clone --recurse-submodules https://github.com/MisterTea/EternalTerminal.git
130+ git clone --recurse-submodules --depth 1 https://github.com/MisterTea/EternalTerminal.git
131131cd EternalTerminal
132132mkdir build
133133cd build
@@ -204,12 +204,12 @@ To build Eternal Terminal on Mac, the easiest way is to grab dependencies with H
204204
205205```
206206brew install autoconf automake libtool
207- git clone --recurse-submodules https://github.com/MisterTea/EternalTerminal.git
207+ git clone --recurse-submodules --depth 1 https://github.com/MisterTea/EternalTerminal.git
208208cd EternalTerminal
209209mkdir build
210210cd build
211211cmake ../
212- make && sudo make install
212+ make -j$(nproc) && sudo make install
213213```
214214
215215To run an ` et ` server for testing, run ` ./etserver ` . To run an ` et `
@@ -227,27 +227,27 @@ Grab the deps and then follow this process.
227227Debian/Ubuntu Dependencies:
228228
229229```
230- sudo apt install libboost-dev libsodium-dev autoconf libtool \
231- libprotobuf-dev protobuf-compiler libgflags-dev libutempter-dev libcurl4-openssl-dev \
230+ sudo apt install libsodium-dev autoconf libtool \
231+ libprotobuf-dev protobuf-compiler libutempter-dev libcurl4-openssl-dev \
232232 build-essential ninja-build cmake git zip
233233```
234234
235235Fetch source, build and install:
236236
237237```
238- git clone --recurse-submodules https://github.com/MisterTea/EternalTerminal.git
238+ git clone --recurse-submodules --depth 1 https://github.com/MisterTea/EternalTerminal.git
239239cd EternalTerminal
240240mkdir build
241241cd build
242242# For ARM (including OS/X with apple silicon):
243243if [[ $(uname -a | grep 'arm\|aarch64') ]]; then export VCPKG_FORCE_SYSTEM_BINARIES=1; fi
244244cmake ../
245- make package
245+ make -j$(nproc) package
246246sudo dpkg --install *.deb
247247sudo cp ../etc/et.cfg /etc/
248248```
249249
250- Once built, the binary only requires ` libgflags-dev ` and ` libprotobuf-dev ` .
250+ Once built, the binary only requires ` libprotobuf-dev ` .
251251
252252
253253### CentOS 7
@@ -268,7 +268,7 @@ sudo yum install devtoolset-11 devtoolset-11-libatomic-devel rh-git227
268268
269269Download and install from source ([ see #238 for details] ( https://github.com/MisterTea/EternalTerminal/issues/238 ) ):
270270```
271- git clone --recurse-submodules https://github.com/MisterTea/EternalTerminal.git
271+ git clone --recurse-submodules --depth 1 https://github.com/MisterTea/EternalTerminal.git
272272cd EternalTerminal
273273mkdir build
274274cd build
0 commit comments