rpcs3/.ci/install-freebsd.sh

19 lines
640 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env -S su -m root -ex
# NOTE: this script is run under root permissions
# shellcheck shell=sh disable=SC2096
2021-05-22 10:42:05 +02:00
# RPCS3 often needs recent Qt and Vulkan-Headers
sed -i '' 's/quarterly/latest/' /etc/pkg/FreeBSD.conf
export ASSUME_ALWAYS_YES=true
pkg info # debug
# WITH_LLVM
2025-03-04 22:45:44 +01:00
pkg install "llvm$LLVM_COMPILER_VER"
2025-03-04 22:45:44 +01:00
# Mandatory dependencies (qtX-base is pulled via qtX-multimedia)
pkg install git ccache cmake ninja "qt$QT_VER_MAIN-multimedia" "qt$QT_VER_MAIN-svg" glew openal-soft ffmpeg
2025-03-04 22:45:44 +01:00
# Optional dependencies (libevdev is pulled by qtX-base)
2025-01-24 08:27:08 +01:00
pkg install pkgconf alsa-lib pulseaudio sdl3 evdev-proto vulkan-headers vulkan-loader