13 lines
194 B
Bash
13 lines
194 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
apt-get update
|
||
|
apt-get install -y --no-install-recommends \
|
||
|
cmake \
|
||
|
ninja-build \
|
||
|
gcc g++ \
|
||
|
python3 \
|
||
|
python3-venv \
|
||
|
python3-tomli \
|
||
|
libglib2.0-dev
|