mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 22:57:59 -05:00
chore: missing fontconfig dep added in workflows
This commit is contained in:
2
.github/workflows/book.yml
vendored
2
.github/workflows/book.yml
vendored
@@ -40,7 +40,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
pip install ghp-import
|
pip install ghp-import
|
||||||
pip install prettytable
|
pip install prettytable
|
||||||
sudo apt -y install make wget libasound2-dev wabt
|
sudo apt -y install make wget libasound2-dev libfontconfig1-dev wabt
|
||||||
wget "https://github.com/badboy/mdbook-toc/releases/download/0.14.1/mdbook-toc-0.14.1-x86_64-unknown-linux-gnu.tar.gz"
|
wget "https://github.com/badboy/mdbook-toc/releases/download/0.14.1/mdbook-toc-0.14.1-x86_64-unknown-linux-gnu.tar.gz"
|
||||||
wget "https://github.com/lzanini/mdbook-katex/releases/download/v0.5.7/mdbook-katex-v0.5.7-x86_64-unknown-linux-gnu.tar.gz"
|
wget "https://github.com/lzanini/mdbook-katex/releases/download/v0.5.7/mdbook-katex-v0.5.7-x86_64-unknown-linux-gnu.tar.gz"
|
||||||
wget "https://github.com/badboy/mdbook-mermaid/releases/download/v0.12.6/mdbook-mermaid-v0.12.6-x86_64-unknown-linux-gnu.tar.gz"
|
wget "https://github.com/badboy/mdbook-mermaid/releases/download/v0.12.6/mdbook-mermaid-v0.12.6-x86_64-unknown-linux-gnu.tar.gz"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Minimum Rust version supported is **1.77.0 (nightly)**.
|
|||||||
The following dependencies are also required:
|
The following dependencies are also required:
|
||||||
|
|
||||||
| Dependency | Debian-based |
|
| Dependency | Debian-based |
|
||||||
|----------------|------------------|
|
|----------------|--------------------|
|
||||||
| git | git |
|
| git | git |
|
||||||
| cmake | cmake |
|
| cmake | cmake |
|
||||||
| make | make |
|
| make | make |
|
||||||
@@ -68,6 +68,7 @@ The following dependencies are also required:
|
|||||||
| pkg-config | pkg-config |
|
| pkg-config | pkg-config |
|
||||||
| alsa-lib | libasound2-dev |
|
| alsa-lib | libasound2-dev |
|
||||||
| clang | libclang-dev |
|
| clang | libclang-dev |
|
||||||
|
| fontconfig | libfontconfig1-dev |
|
||||||
| openssl | libssl-dev |
|
| openssl | libssl-dev |
|
||||||
| sqlcipher | libsqlcipher-dev |
|
| sqlcipher | libsqlcipher-dev |
|
||||||
| sqlite3 | libsqlite3-dev |
|
| sqlite3 | libsqlite3-dev |
|
||||||
@@ -78,7 +79,7 @@ following to install the required dependencies:
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
# apt-get update
|
# apt-get update
|
||||||
# apt-get install -y git cmake make gcc g++ pkg-config libasound2-dev libclang-dev libssl-dev libsqlcipher-dev libsqlite3-dev wabt
|
# apt-get install -y git cmake make gcc g++ pkg-config libasound2-dev libclang-dev libfontconfig1-dev libssl-dev libsqlcipher-dev libsqlite3-dev wabt
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternatively, users can try using the automated script under `contrib`
|
Alternatively, users can try using the automated script under `contrib`
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ setup_mac() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setup_apt() {
|
setup_apt() {
|
||||||
apt_deps="git cmake make gcc g++ pkg-config libasound2-dev libclang-dev libssl-dev libsqlcipher-dev libsqlite3-dev wabt"
|
apt_deps="git cmake make gcc g++ pkg-config libasound2-dev libclang-dev libfontconfig1-dev libssl-dev libsqlcipher-dev libsqlite3-dev wabt"
|
||||||
$1 install $apt_deps || return 1
|
$1 install $apt_deps || return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user