mirror of
https://github.com/ValveSoftware/GameNetworkingSockets.git
synced 2026-05-29 16:20:34 +00:00
26 lines
293 B
Bash
Executable File
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
|