Files
Nina Chlóe Kassandra Reiß 36585f4206 First attempts on using distrobox
2026-04-08 21:55:18 +02:00

12 lines
284 B
Bash

#!/usr/bin/env bash
set -e
if command -v apt >/dev/null; then
sudo apt update
sudo apt install -y build-essential cmake
elif command -v pacman >/dev/null; then
sudo pacman -Sy --noconfirm base-devel cmake
elif command -v apk >/dev/null; then
sudo apk add build-base cmake
fi