mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-12-07 12:43:51 +00:00
update wine stuff
This commit is contained in:
parent
50ab3e3fbb
commit
ff73ea20cc
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
16
appdwarf
16
appdwarf
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue