diff options
author | ilbuonmarcio | 2023-05-08 22:03:18 +0200 |
---|---|---|
committer | ilbuonmarcio | 2023-05-08 22:03:18 +0200 |
commit | d0a7163287dc67b783bc8f4a578c515f00fb3b27 (patch) | |
tree | 34f4f8fcf6ecec9d42f4724ffa0b6c2c50e39fa8 | |
parent | 6950335b5d6ac5e660fecde1eb546143792590eb (diff) | |
download | aur-d0a7163287dc.tar.gz |
Forced use of downloaded dotnet .tar.gz instead of system one, fixing possible error at install time if you have community/dotnet-sdk installed with old unsupported version
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 4 insertions, 5 deletions
@@ -1,6 +1,6 @@ pkgbase = ryujinx-git pkgdesc = Experimental Nintendo Switch Emulator written in C# - pkgver = r2738.680e54802 + pkgver = r2771.a8950d6ac pkgrel = 1 url = https://github.com/Ryujinx/Ryujinx install = ryujinx.install @@ -1,6 +1,6 @@ # Maintainer: Darvin Delgado <dnmodder at gmail dot com> pkgname=ryujinx-git -pkgver=r2738.680e54802 +pkgver=r2771.a8950d6ac pkgrel=1 pkgdesc="Experimental Nintendo Switch Emulator written in C#" arch=(x86_64) @@ -29,13 +29,12 @@ pkgver() { build() { export DOTNET_ROOT=$srcdir/dotnet - export PATH=$PATH:$srcdir/dotnet mkdir -p "$DOTNET_ROOT" && tar zxf dotnet-sdk-linux-x64.tar.gz -C "$DOTNET_ROOT" cd "Ryujinx" - dotnet publish -c Release -r linux-x64 -o ../publish -p:DebugType=embedded -p:ExtraDefineConstants="DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" src/Ryujinx --self-contained true - dotnet publish -c Release -r linux-x64 -o ../publish_ava -p:DebugType=embedded -p:ExtraDefineConstants="DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" src/Ryujinx.Ava --self-contained true + $DOTNET_ROOT/dotnet publish -c Release -r linux-x64 -o ../publish -p:DebugType=embedded -p:ExtraDefineConstants="DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" src/Ryujinx --self-contained true + $DOTNET_ROOT/dotnet publish -c Release -r linux-x64 -o ../publish_ava -p:DebugType=embedded -p:ExtraDefineConstants="DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" src/Ryujinx.Ava --self-contained true } package() { |