This commit is contained in:
xiota 2024-03-26 16:43:11 +00:00
parent 07c6b2ff07
commit dc9a750a38
2 changed files with 7 additions and 6 deletions

View file

@ -1,15 +1,16 @@
pkgbase = ryujinx pkgbase = ryujinx
pkgdesc = Experimental Nintendo Switch Emulator written in C# pkgdesc = Experimental Nintendo Switch Emulator written in C#
pkgver = 1.1.1234 pkgver = 1.1.1244
pkgrel = 1 pkgrel = 1
url = https://github.com/Ryujinx/Ryujinx url = https://github.com/Ryujinx/Ryujinx
install = ryujinx.install install = ryujinx.install
arch = x86_64 arch = x86_64
license = MIT license = MIT
makedepends = desktop-file-utils makedepends = desktop-file-utils
makedepends = dotnet-sdk-8.0 makedepends = dotnet-sdk>=8.0.3.sdk202
options = !strip options = !strip
source = ryujinx-1.1.1234.tar.gz::https://github.com/Ryujinx/Ryujinx/archive/1.1.1234.tar.gz options = !debug
source = ryujinx-1.1.1244.tar.gz::https://github.com/Ryujinx/Ryujinx/archive/1.1.1244.tar.gz
sha256sums = SKIP sha256sums = SKIP
pkgname = ryujinx pkgname = ryujinx

View file

@ -16,7 +16,7 @@ unset _pkgtype
## basic info ## basic info
_pkgname="ryujinx" _pkgname="ryujinx"
pkgname="$_pkgname${_pkgtype:-}" pkgname="$_pkgname${_pkgtype:-}"
pkgver=1.1.1234 pkgver=1.1.1244
pkgrel=1 pkgrel=1
pkgdesc="Experimental Nintendo Switch Emulator written in C#" pkgdesc="Experimental Nintendo Switch Emulator written in C#"
url="https://github.com/Ryujinx/Ryujinx" url="https://github.com/Ryujinx/Ryujinx"
@ -27,10 +27,10 @@ arch=(x86_64)
_main_package() { _main_package() {
makedepends=( makedepends=(
'desktop-file-utils' 'desktop-file-utils'
'dotnet-sdk-8.0' # check global.json 'dotnet-sdk>=8.0.3.sdk202' # AUR: dotnet-core-bin
) )
options=('!strip') options=('!strip' '!debug')
install="$_pkgname.install" install="$_pkgname.install"
if [ "${_build_git::1}" != "t" ] ; then if [ "${_build_git::1}" != "t" ] ; then