mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-27 01:46:51 +00:00
12 lines
356 B
Bash
Executable file
12 lines
356 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
# SPDX-FileCopyrightText: 2024, Collabora, Ltd. and the Monado contributors
|
|
|
|
set -e
|
|
|
|
(
|
|
echo 'deb https://deb.debian.org/debian bullseye-backports main contrib' > /etc/apt/sources.list.d/backports.list
|
|
apt-get update && apt-get upgrade
|
|
apt-get install --no-install-recommends -y -t bullseye-backports cmake
|
|
)
|