docs: improve build/install commands (#6962)

Changes:

* Format
* Quote URL
* Use `&&` where applicable
* Use parallel make

Kind of relates to commit 500d8f2d6 ("ci: run make in parallel where
applicable", 2023-08-14) / PR #5960.
This commit is contained in:
Kelvin M. Klann 2025-11-12 00:46:39 +00:00 committed by GitHub
parent bdb8c831e9
commit e5acc79976
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 7 deletions

View file

@ -163,9 +163,11 @@ packages](https://github.com/netblue30/firejail/releases).
You can clone the source code from this git repository and build manually:
```sh
git clone https://github.com/netblue30/firejail.git
cd firejail
./configure && make && sudo make install-strip
git clone 'https://github.com/netblue30/firejail.git' &&
cd firejail &&
./configure &&
make -j "$(nproc)" &&
sudo make install-strip
```
On Debian/Ubuntu you will need to install git and gcc.