This commit is contained in:
JMARyA 2025-03-09 02:48:00 +01:00
parent e665b6d626
commit aebd47503e
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
9 changed files with 158 additions and 3 deletions

12
examples/ps3/PKGBUILD Normal file
View file

@ -0,0 +1,12 @@
pkgname=game.title
pkgver=1.0
pkgrel=1
pkgdesc="<GAME_DESC>"
arch=('x86_64')
depends=('rpcs3')
source=()
sha256sums=()
package() {
rsync -vzr ../root/ "$pkgdir/"
}

View file

@ -0,0 +1 @@
GAME CONTENT

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Name=<GAME_TITLE>
Comment=<GAME_DESC>
Exec=rpcs3 --no-gui --fullscreen "/games/rom/ps3/game.title/PS3_GAME"
Icon=/usr/share/icons/game.title/icon1.ico
StartupNotify=true
Terminal=false
Type=Application
Categories=Game;

View file

@ -0,0 +1 @@
GAME CONTENT

View file

@ -8,5 +8,5 @@ source=()
sha256sums=()
package() {
rsync -vzr ./root/ "$pkgdir/"
rsync -vzr ../root/ "$pkgdir/"
}

View file

@ -1,8 +1,8 @@
[Desktop Entry]
Name=<GAME_TITLE>
Comment=<GAME_DESC>
Exec=env WINEPREFIX="$HOME/Games/umu/game.title" STEAM_COMPAT_LIBRARY_PATHS="/games" bash -c "umu-run /games/game.title/_Redist/vc_redist.x64.exe /Install /Quiet && umu-run /games/game.title/_Redist/vc_redist.x86.exe /Install /Quiet && umu-run /games/game.title/game.exe"
Icon=/usr/share/icons/game.title/icon.png
Exec=env WINEPREFIX="$HOME/Games/umu/game.title" STEAM_COMPAT_LIBRARY_PATHS="/games" bash -c "cd /games/game.title && umu-run /games/game.title/_Redist/vc_redist.x64.exe /Install /Quiet && umu-run /games/game.title/_Redist/vc_redist.x86.exe /Install /Quiet && umu-run /games/game.title/game.exe"
Icon=/usr/share/icons/game.title/icon1.ico
StartupNotify=true
Terminal=false
Type=Application