mirror of
https://github.com/RPCS3/rpcs3
synced 2024-11-02 11:45:30 +00:00
18 lines
657 B
Bash
Executable file
18 lines
657 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
|
|
|
|
# Prefer newer Clang than in base system (see also .ci/build-freebsd.sh)
|
|
pkg install llvm16
|
|
|
|
# Mandatory dependencies (qt6-base is pulled via qt6-multimedia)
|
|
pkg install git ccache cmake ninja qt6-multimedia qt6-svg glew openal-soft ffmpeg
|
|
|
|
# Optional dependencies (libevdev is pulled by qt6-base)
|
|
pkg install pkgconf alsa-lib pulseaudio sdl2 evdev-proto vulkan-headers vulkan-loader
|