mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
18 lines
640 B
Bash
Executable file
18 lines
640 B
Bash
Executable file
#!/usr/bin/env -S su -m root -ex
|
|
# NOTE: this script is run under root permissions
|
|
# shellcheck shell=sh disable=SC2096
|
|
|
|
# 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
|
|
pkg install "llvm$LLVM_COMPILER_VER"
|
|
|
|
# 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
|
|
|
|
# Optional dependencies (libevdev is pulled by qtX-base)
|
|
pkg install pkgconf alsa-lib pulseaudio sdl3 evdev-proto vulkan-headers vulkan-loader
|