mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
33 lines
542 B
Bash
33 lines
542 B
Bash
# Maintainer:
|
|
|
|
## options
|
|
if [[ (-z "$_srcinfo" && -z "$_pkgver") ]]; then
|
|
: ${_autoupdate:=true}
|
|
fi
|
|
|
|
: ${_install_path:=usr/lib}
|
|
: ${startdir:=.}
|
|
|
|
_pkgname="ryujinx"
|
|
pkgname="$_pkgname-canary"
|
|
pkgver=1.2.146
|
|
pkgrel=1
|
|
pkgdesc="Experimental Nintendo Switch Emulator written in C#"
|
|
url="https://github.com/Ryubing/Ryujinx"
|
|
license=('MIT')
|
|
arch=('x86_64')
|
|
|
|
source "$startdir"/PKGBUILD.common
|
|
source "$startdir"/PKGBUILD.canary
|
|
|
|
_update_version
|
|
_source_ryujinx
|
|
|
|
source+=(
|
|
PKGBUILD.canary
|
|
PKGBUILD.common
|
|
)
|
|
sha256sums+=(
|
|
'SKIP'
|
|
'SKIP'
|
|
)
|