Files
GameNetworkingSockets/.github/install/archlinux.sh
T
2021-02-06 15:38:39 -08:00

25 lines
285 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
git
go
ninja
)
PACKAGES+=(protobuf)
PACKAGES+=(openssl)
PACKAGES+=(libsodium)
pacman --noconfirm -Sy "${PACKAGES[@]}"
exit 0