Files
GameNetworkingSockets/.github/install/archlinux.sh
T
2026-04-12 19:21:06 -07:00

26 lines
293 B
Bash
Executable File

#!/bin/bash
#
# This is an install script for Arch Linux-specific packages.
#
set -ex
# Base build packages
PACKAGES=(
base-devel
ccache
clang
cmake
python
git
go
ninja
)
PACKAGES+=(protobuf)
PACKAGES+=(openssl)
PACKAGES+=(libsodium)
pacman --noconfirm -Sy "${PACKAGES[@]}"
exit 0