From d1ffb60e8ecf6541ede4b64304bc4daa49a1b0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 4 Jun 2024 16:25:37 +0200 Subject: [PATCH] README.md: cm-super is now needed to build PDFs under Debian unstable/testing See the Debian changelog entry for dynare 6.1-2. [skip ci] --- README.md | 3 ++- windows/install-packages.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dbad01839f..3f7f100486 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ All the prerequisites are packaged: - `texlive-fonts-extra` (for ccicons) - `texlive-science` (for amstex) - `lmodern` (for macroprocessor PDF) +- `cm-super` (for BVAR à la Sims and GSA PDFs) - `python3-sphinx` - `tex-gyre` - `latexmk` @@ -191,7 +192,7 @@ All the prerequisites are packaged: You can install them all at once with: ```sh -apt install gcc g++ gfortran octave-dev libboost-graph-dev libgsl-dev libmatio-dev libslicot-dev libslicot-pic libsuitesparse-dev flex libfl-dev bison meson pkgconf texlive texlive-publishers texlive-latex-extra texlive-fonts-extra texlive-science lmodern python3-sphinx make tex-gyre latexmk libjs-mathjax x13as +apt install gcc g++ gfortran octave-dev libboost-graph-dev libgsl-dev libmatio-dev libslicot-dev libslicot-pic libsuitesparse-dev flex libfl-dev bison meson pkgconf texlive texlive-publishers texlive-latex-extra texlive-fonts-extra texlive-science lmodern cm-super python3-sphinx make tex-gyre latexmk libjs-mathjax x13as ``` If you use MATLAB, we strongly advise to also `apt install matlab-support` and confirm to rename the GCC libraries shipped with MATLAB to avoid possible conflicts with GCC libraries shipped by your distribution. diff --git a/windows/install-packages.sh b/windows/install-packages.sh index db0ed947cc..94f5ac773f 100755 --- a/windows/install-packages.sh +++ b/windows/install-packages.sh @@ -3,7 +3,7 @@ # On a Debian system, install the packages needed for Windows # cross-compilation, and also setup the cross-compiler alternatives. -# Copyright © 2017-2023 Dynare Team +# Copyright © 2017-2024 Dynare Team # # This file is part of Dynare. # @@ -26,7 +26,7 @@ PACKAGES=(make p7zip zip zstd wget meson mingw-w64-tools gcc-mingw-w64-x86-64-posix g++-mingw-w64-x86-64-posix gfortran-mingw-w64-x86-64-posix flex libfl-dev bison texlive texlive-publishers texlive-latex-extra texlive-science - texlive-fonts-extra lmodern python3-sphinx latexmk nsis) + texlive-fonts-extra lmodern cm-super python3-sphinx latexmk nsis) apt install "${PACKAGES[@]}" -- GitLab