mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-15 10:09:12 +02:00
13 lines
478 B
Bash
Executable file
13 lines
478 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2023, project-repo and the cagebreak contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
sudo pacman -Syu --noconfirm git grep sed meson ninja clang gcc shellcheck jq openbsd-netcat gnupg binutils alacritty firefox wlroots wayland libxkbcommon cairo pango fontconfig libinput libevdev systemd-libs # systemd-libs is included because of libudev
|
|
|
|
if [[ -n ${MESON_SOURCE_ROOT} ]]
|
|
then
|
|
# shellcheck disable=2164
|
|
cd "${MESON_SOURCE_ROOT}"
|
|
fi
|
|
|
|
gpg --import keys/*
|