Files
repos/gaming/wine/wine.toml
2026-03-20 10:25:48 +01:00

24 lines
967 B
TOML

[package]
name = "wine"
version = "10.11"
description = "Windows compatibility layer"
url = "https://www.winehq.org/"
license = "LGPL-2.1"
[source]
url = "https://dl.winehq.org/wine/source/10.x/wine-${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
# Wine needs both 64-bit and 32-bit libraries for WoW64 (Windows on Windows 64)
run = ["glibc", "freetype", "fontconfig", "libpng", "openssl", "vulkan-loader", "sdl2", "gnutls",
"lib32-glibc", "lib32-zlib", "lib32-openssl", "lib32-freetype", "lib32-fontconfig",
"lib32-alsa-lib", "lib32-libx11", "lib32-libxcb", "lib32-mesa", "lib32-ncurses"]
build = ["gcc", "make", "flex", "bison", "pkg-config", "autoconf"]
[build]
system = "autotools"
configure = """mkdir -p build64 && cd build64 && ../configure --prefix=/usr --enable-win64 --with-x --with-wayland"""
make = """make -C build64"""
install = """make -C build64 DESTDIR=${PKG} install"""