diff options
author | Marco Rubin | 2023-02-09 12:12:32 +0100 |
---|---|---|
committer | Marco Rubin | 2023-02-09 12:12:32 +0100 |
commit | 97669e1436d0fecdce7bb1cda7ab913c0371eebc (patch) | |
tree | 30fc4b1c7a9d8036f304f55c4ed59ac238e853e7 /PKGBUILD | |
parent | 198dc778c5216bbc600aef4b85fda2edcafd24d3 (diff) | |
download | aur-97669e1436d0fecdce7bb1cda7ab913c0371eebc.tar.gz |
Permissions
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,7 +4,7 @@ _name=Ryujinx pkgname=ryujinx pkgver=1.1.614 _commit=5f38086f9494a4ffbcb4b0ce4b7727ad8ac18b3e -pkgrel=2 +pkgrel=3 pkgdesc="Experimental Nintendo Switch Emulator written in C#" arch=(x86_64) url="https://github.com/Ryujinx/Ryujinx" @@ -19,7 +19,7 @@ b2sums=('SKIP') # pkgver() { # cd $_name -# # changelog is $url/wiki/Changelog, needs python-html2text +# # changelog is $url/wiki/Changelog, needs python-html2text # _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}' # } @@ -43,6 +43,8 @@ package() { mkdir -p $pkgdir/opt/ryujinx cp -R Ryujinx/bin/Release/net7.0/linux-x64/publish/* "$pkgdir/opt/ryujinx/" cp -R Ryujinx.Ava/bin/Release/net7.0/linux-x64/publish/* "$pkgdir/opt/ryujinx/" + 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" |