update wine stuff

This commit is contained in:
Phantop 2025-08-08 12:58:33 -04:00
parent 50ab3e3fbb
commit ff73ea20cc
2 changed files with 17 additions and 1 deletions

View file

@ -56,7 +56,7 @@ jobs:
fail-fast: false
matrix:
app:
- { name: wine, pkgs: dxvk-async-git mono vkd3d-proton-mingw-git wine-gecko wine-mono wine-staging-wow64 winetricks }
- { name: wine, pkgs: dxvk-async-git mono vkd3d-proton-mingw-git wine-gecko wine-mono wine-staging winetricks }
- { name: emus, pkgs: ares-emu-avx-git cemu citra-canary-git ryujinx suyu-dev-qt6-git }
runs-on: ubuntu-latest
container: archlinux:latest

View file

@ -24,6 +24,16 @@ brun() {
chmod +x "$1"
}
urun() {
outfunc apprun | sed '5s/ / umu-run /' > "$1"
chmod +x "$1"
}
wrun() {
outfunc apprun | sed '5s/ / wine /;5s/)/).exe/' > "$1"
chmod +x "$1"
}
appa() { arun "$DIR"/AppRun; }
appb() { brun "$DIR"/AppRun; }
@ -138,6 +148,12 @@ case "$1" in
echo Built by July 🏳️‍🌈
printf '\e[0m'
exit ;;
-u )
urun "$2"
exit ;;
-w )
wrun "$2"
exit ;;
-* | '' )
echo "Usage: appdwarf [option] [APP/FILE/FOLDER/URL] [compression options]"
echo " -a [FILE] write example AppRun file"