diff --git a/.SRCINFO b/.SRCINFO index 44088f2cedd3..e64589ab74fa 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,21 @@ pkgbase = ryujinx pkgdesc = Experimental Nintendo Switch Emulator written in C# - pkgver = 1.2.81 - pkgrel = 1 + pkgver = 1.2.82 + pkgrel = 2 url = https://github.com/Ryubing/Ryujinx arch = x86_64 license = MIT + makedepends = dotnet-sdk makedepends = desktop-file-utils - makedepends = dotnet-sdk-bin - depends = gcc-libs + depends = alsa-lib + depends = fontconfig + depends = jack + depends = libpulse + depends = libx11 + depends = wayland options = !strip options = !debug - source = ryujinx-1.2.81.tar.gz::https://github.com/Ryubing/Ryujinx/archive/refs/tags/1.2.81.tar.gz + source = ryujinx-1.2.82.tar.gz::https://github.com/Ryubing/Ryujinx/archive/refs/tags/1.2.82.tar.gz source = PKGBUILD.common source = PKGBUILD.release sha256sums = SKIP diff --git a/PKGBUILD b/PKGBUILD index 4aefc53106c4..c22228f1f892 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,12 +5,13 @@ if [[ (-z "$_srcinfo" && -z "$_pkgver") ]]; then : ${_autoupdate:=true} fi +#: ${_dotnet_type=-bin} : ${_install_path:=usr/lib} _pkgname="ryujinx" pkgname="$_pkgname" -pkgver=1.2.81 -pkgrel=1 +pkgver=1.2.82 +pkgrel=2 pkgdesc="Experimental Nintendo Switch Emulator written in C#" url="https://github.com/Ryubing/Ryujinx" license=('MIT') diff --git a/PKGBUILD.common b/PKGBUILD.common index 312895f2d32c..cb802fda2b4f 100644 --- a/PKGBUILD.common +++ b/PKGBUILD.common @@ -1,9 +1,14 @@ depends=( - 'gcc-libs' + 'alsa-lib' + 'fontconfig' + 'jack' + 'libpulse' + 'libx11' + 'wayland' ) makedepends=( + "dotnet-sdk${_dotnet_type:-}" 'desktop-file-utils' - 'dotnet-sdk-bin' # aur/dotnet-core-bin ) options=('!strip' '!debug') @@ -19,10 +24,12 @@ build() ( local _args=( -c Release -r linux-x64 + --disable-build-servers --nologo --self-contained true -p:DebugType=none -p:ExtraDefineConstants=DISABLE_UPDATER + -p:PublishSingleFile=true -p:Version="${pkgver%%.[A-Za-z]*}" )