dependencies: trisquel: website: Add graphviz to fix website package build.

Without that fix, 'make release' fails with the following error:
    ROM image release archives available at release/roms/

    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a race-free mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking for awk... awk
    [...]
    checking for dot... no

This happens because during releases we also ship a tarball of the
website, and the commit 388c0ef3d0
("website: add history page of the GNU Boot git repositories.")
started using dot without also adding the graphviz dependency in the
dependencies for building releases.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
This commit is contained in:
Denis 'GNUtoo' Carikli 2024-11-22 15:01:29 +01:00 committed by Adrien 'neox' Bourmault
parent c8c9e9e119
commit 67cb7ec86a
Signed by: neox
GPG Key ID: 57BC26A3687116F6
1 changed files with 3 additions and 1 deletions

View File

@ -134,4 +134,6 @@ install_packages shellcheck # lint
install_packages gawk git grep lzip make sed tar xz-utils # u-boot-libre
# For building the website tarball
install_packages pandoc
install_packages \
pandoc \
graphviz