14 lines
248 B
Bash
Executable File
14 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends \
|
|
cmake \
|
|
ninja-build \
|
|
gcc g++ \
|
|
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \
|
|
python3 \
|
|
python3-venv \
|
|
python3-tomli \
|
|
libglib2.0-dev |