-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e321a67
commit b344db7
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Install dependencies: | ||
``` | ||
sudo dnf install -y mock fedpkg | ||
sudo usermod -aG mock username | ||
su username | ||
``` | ||
|
||
# Build: | ||
``` | ||
fedpkg --release f39 srpm | ||
mock -r /etc/mock/fedora-39-x86_64.cfg --rebuild --enable-network *.src.rpm | ||
mv /var/lib/mock/fedora-39-x86_64/result . | ||
``` | ||
|
||
# Install: | ||
``` | ||
cd result | ||
sudo dnf install -y umu-launcher*.rpm | ||
``` | ||
|
||
# Remove | ||
``` | ||
sudo dnf remove -y umu-launcher | ||
``` | ||
|
||
# Usage examples: | ||
|
||
# winecfg: | ||
``` | ||
GAMEID=umu-starcitizen WINEPREFIX=/home/tcrider/Games/umu/umu-starcitizen umu-run winecfg | ||
``` | ||
|
||
# running a game using the default latest UMU-Proton: | ||
``` | ||
GAMEID=umu-starcitizen WINEPREFIX=/home/tcrider/Games/umu/umu-starcitizen umu-run /path/to/some/game.exe | ||
``` | ||
|
||
# running a game using the latest GE-Proton: | ||
``` | ||
GAMEID=umu-starcitizen WINEPREFIX=/home/tcrider/Games/umu/umu-starcitizen PROTONPATH=GE-Proton umu-run /path/to/some/game.exe | ||
``` | ||
|
||
# running a game using a specific proton version: | ||
``` | ||
GAMEID=umu-starcitizen WINEPREFIX=/home/tcrider/Games/umu/umu-starcitizen PROTONPATH=GE-Proton9-1 umu-run /path/to/some/game.exe | ||
``` |