2022-12-10 16:56:29 +00:00
|
|
|
# Maintainer: Marco Rubin <marco.rubin@protonmail.com>
|
|
|
|
|
2022-12-10 14:42:18 +00:00
|
|
|
_name=Ryujinx
|
|
|
|
pkgname=ryujinx
|
|
|
|
pkgver=1.1.458
|
|
|
|
_commit=459c4caebac0bc16c04467d9dcd2ef7a9fc0bd92
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Experimental Nintendo Switch Emulator written in C#"
|
|
|
|
arch=(x86_64)
|
|
|
|
url="https://github.com/Ryujinx/Ryujinx"
|
|
|
|
license=('MIT')
|
|
|
|
depends=('dotnet-runtime')
|
|
|
|
makedepends=('dotnet-sdk' 'git' 'html2text')
|
|
|
|
provides=($_name)
|
2022-12-10 16:56:29 +00:00
|
|
|
conflicts=($pkgname-git)
|
|
|
|
options=(!strip)
|
2022-12-10 14:42:18 +00:00
|
|
|
source=("git+$url#commit=$_commit"
|
|
|
|
"$url/wiki/Changelog")
|
|
|
|
b2sums=('SKIP'
|
|
|
|
'SKIP')
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd $_name
|
|
|
|
|
|
|
|
_commit_msg=$(git log -1 --pretty=%B | awk '{$NF=""}1') # remove PR number in parentheses
|
|
|
|
html2text ../Changelog | grep -B 4 "${_commit_msg::length - 1}" | head -n 1 | awk '{print $2}'
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $_name
|
|
|
|
|
2022-12-10 16:56:29 +00:00
|
|
|
dotnet publish --nologo -c Release -r linux-x64 -p:DebugType=embedded --self-contained true Ryujinx
|
|
|
|
dotnet publish --nologo -c Release -r linux-x64 -p:DebugType=embedded --self-contained true Ryujinx.Ava
|
2022-12-10 14:42:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $_name
|
|
|
|
|
2022-12-10 16:56:29 +00:00
|
|
|
install -Dm644 -t "$pkgdir/opt/ryujinx/" Ryujinx/bin/Release/net7.0/linux-x64/publish/*
|
|
|
|
install -Dm644 -t "$pkgdir/opt/ryujinx/" Ryujinx.Ava/bin/Release/net7.0/linux-x64/publish/*
|
|
|
|
chmod 755 "$pkgdir/opt/ryujinx/Ryujinx"
|
|
|
|
chmod 755 "$pkgdir/opt/ryujinx/Ryujinx.Ava"
|
|
|
|
|
|
|
|
install -dm755 "$pkgdir/usr/bin"
|
|
|
|
ln -s "/opt/ryujinx/Ryujinx" "$pkgdir/usr/bin/Ryujinx"
|
|
|
|
ln -s "/opt/ryujinx/Ryujinx.Ava" "$pkgdir/usr/bin/Ryujinx.Ava"
|
2022-12-10 14:42:18 +00:00
|
|
|
|
2022-12-10 16:56:29 +00:00
|
|
|
install -Dm644 distribution/linux/ryujinx.desktop "$pkgdir/usr/share/applications/ryujinx.desktop"
|
2022-12-10 14:42:18 +00:00
|
|
|
install -Dm644 distribution/linux/ryujinx-logo.svg "$pkgdir/usr/share/icons/hicolor/scalable/apps/ryujinx.svg"
|
|
|
|
install -Dm644 distribution/linux/ryujinx-mime.xml "$pkgdir/usr/share/mime/packages/ryujinx-mime.xml"
|
|
|
|
|
2022-12-10 16:56:29 +00:00
|
|
|
install -dm777 "$pkgdir/opt/ryujinx/Logs"
|
2022-12-10 14:42:18 +00:00
|
|
|
}
|