We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b02be commit 7fe1496Copy full SHA for 7fe1496
scripts/build_gst.sh
@@ -231,6 +231,12 @@ apt-get install --assume-yes --no-install-recommends --mark-auto \
231
"${GST_BUILD_TOOLS[@]}" "${GST_BUILD_LIBS[@]}"
232
python3 -m pip install --no-cache-dir "${GST_PIP_DEPENDENCIES[@]}"
233
234
+# Install Rust toolchain (needed for gst-plugins-rs: intersink, intersrc, etc.)
235
+curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
236
+# shellcheck source=/dev/null
237
+source "$HOME/.cargo/env"
238
+cargo install cargo-c
239
+
240
# Download and install IL headers if needed:
241
if [ -n "$USERLAND_PATH" ]; then
242
git clone https://github.com/raspberrypi/userland.git "$USERLAND_PATH" --branch 54fd97ae4066a10b6b02089bc769ceed328737e0 \
0 commit comments