Files
packages/extra/sdl3/sdl3.toml
T
SFG545 47993f6730 Add new packages and build scripts for various libraries
- Added Nuklear GUI library with build script and configuration.
- Introduced OpenH264 encoder/decoder with build configuration.
- Added PortAudio library for audio I/O with custom build script.
- Included Python Execnet for multi-Python deployment.
- Added Pytest Xdist plugin for distributed testing.
- Introduced Shaderc for shader compilation tools.
- Added Snappy compression library with necessary patches and configuration.
- Included SoundTouch audio processing library with build configuration.
- Added SRT library for secure reliable transport.
- Introduced VapourSynth video processing framework with configuration.
- Added Vid.stab for video stabilization.
- Included WebRTC Audio Processing library with build configuration.
- Added X264 video encoding library with patches for POSIX compliance.
- Introduced X265 video encoder with build configuration.
- Added XKeyboard Config for X keyboard configuration files.
- Included Xorg XKBComp for keyboard description compilation.
- Added Xvidcore MPEG-4 video codec library with configuration.
- Introduced ZeroMQ messaging system with patches and build configuration.
- Added Zimg library for scaling and colorspace conversion.
2026-03-25 05:32:53 -05:00

62 lines
1.2 KiB
TOML

[build]
type = "cmake"
[build.flags]
build_dir = "build"
configure = [
"-DSDL_STATIC=OFF",
"-G Ninja",
"-DSDL_RPATH=OFF",
"-DSDL_X11_XINPUT=OFF",
"-DSDL_X11_XFIXES=OFF",
"-DSDL_X11_XTEST=OFF",
"-DSDL_X11_XINPUT=OFF",
]
no-delete-static = true
[dependencies]
build = [
"cmake",
"ninja",
"wayland-protocols",
"mesa",
"alsa-lib",
"libxrandr",
"libxinerama",
"wayland",
"libxss",
"vulkan-headers",
"jack"
]
optional = [
"alsa-lib",
"vulkan-driver",
"jack"
]
runtime = [
"glibc",
"libxext",
"libx11",
"libgl",
"libxrender",
"libxcursor",
"hidapi",
"libusb",
]
[package]
description = "A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard (Version 3)"
homepage = "https://www.libsdl.org/"
license = "Zlib"
name = "sdl3"
version = "3.4.2"
[[manual_sources]]
file = "sdl-libxinput.patch"
[[source]]
extract_dir = "$name-$version"
sha256 = "ef39a2e3f9a8a78296c40da701967dd1b0d0d6e267e483863ce70f8a03b4050c"
url = "https://github.com/libsdl-org/SDL/releases/download/release-$version/SDL3-$version.tar.gz"
patches = [ "sdl-libxinput.patch" ]