Fix setup.sh

This commit is contained in:
Valère Plantevin
2026-04-21 22:05:34 -04:00
parent 9df19fd18f
commit 42ab81899c
2 changed files with 3 additions and 7 deletions

View File

@@ -8,11 +8,7 @@ sudo apt-get install -y --no-install-recommends \
build-essential pkg-config libssl-dev \ build-essential pkg-config libssl-dev \
texlive-latex-base texlive-latex-extra \ texlive-latex-base texlive-latex-extra \
texlive-fonts-recommended texlive-bibtex-extra \ texlive-fonts-recommended texlive-bibtex-extra \
lmodern biber gcc-aarch64-linux-gnu lmodern biber gcc-aarch64-linux-gnu wget
echo "=== Configuring Rust Target ==="
# Using absolute path ensures this works in non-interactive scripts
/usr/local/cargo/bin/rustup target add aarch64-unknown-linux-gnu
echo "=== Installing Python deps ===" echo "=== Installing Python deps ==="
python3 -m venv "$HOME/.venv/quic_ecs" python3 -m venv "$HOME/.venv/quic_ecs"
@@ -23,7 +19,7 @@ echo "=== First Cargo build ==="
/usr/local/cargo/bin/cargo build --release 2>&1 | tail -5 /usr/local/cargo/bin/cargo build --release 2>&1 | tail -5
echo "=== Installing Template ===" echo "=== Installing Template ==="
cp paper/_extensions/ cd paper/_extensions/
wget https://mirrors.ctan.org/macros/latex/contrib/llncs/splncs04.bst wget https://mirrors.ctan.org/macros/latex/contrib/llncs/splncs04.bst
wget https://mirrors.ctan.org/macros/latex/contrib/llncs/llncs.cls wget https://mirrors.ctan.org/macros/latex/contrib/llncs/llncs.cls
cd ../.. cd ../..

View File

@@ -28,7 +28,7 @@ Springer's LNCS class files are on CTAN — do NOT commit them to the repo
(licensing). Download once and place in `paper/`: (licensing). Download once and place in `paper/`:
```bash ```bash
cp paper/_extensions/ cd paper/_extensions/
wget https://mirrors.ctan.org/macros/latex/contrib/llncs/splncs04.bst wget https://mirrors.ctan.org/macros/latex/contrib/llncs/splncs04.bst
wget https://mirrors.ctan.org/macros/latex/contrib/llncs/llncs.cls wget https://mirrors.ctan.org/macros/latex/contrib/llncs/llncs.cls
``` ```