-
Notifications
You must be signed in to change notification settings - Fork 136
Fixpkg: Trigger rally #1881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
IntinteDAO
wants to merge
1
commit into
termux-user-repository:master
Choose a base branch
from
IntinteDAO:trigger-rally
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+73
−2
Open
Fixpkg: Trigger rally #1881
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,36 @@ | ||
| diff -ur orig/bin/trigger-rally.config.defs mod/bin/trigger-rally.config.defs | ||
| --- orig/bin/trigger-rally.config.defs 2017-11-06 15:38:06.000000000 +0100 | ||
| +++ mod/bin/trigger-rally.config.defs 2025-08-08 17:37:11.334015254 +0200 | ||
| @@ -122,7 +122,7 @@ | ||
| <datadirectory> | ||
| <data path="../data" /> | ||
| <data path="C:\Program Files\Trigger Rally\data" /> | ||
| - <data path="/usr/share/games/trigger-rally" /> | ||
| + <data path="@TERMUX_PREFIX@/share/games/trigger-rally" /> | ||
| <data path="/usr/local/share/games/trigger-rally" /> | ||
| </datadirectory> | ||
|
|
||
| diff -ur orig/src/GNUmakefile mod/src/GNUmakefile | ||
| --- orig/src/GNUmakefile 2019-02-26 23:35:48.000000000 +0100 | ||
| +++ mod/src/GNUmakefile 2025-08-08 17:28:38.987297548 +0200 | ||
| @@ -79,7 +79,7 @@ | ||
| install: installdirs build | ||
| @printf "\ninstall [%s] begin\n" "$(DISTNAME)" | ||
| @$(INSTALL_PROGRAM) "$(TR_EXEFILE)" "$(DESTDIR)$(bindir)" | ||
| - @$(INSTALL_DATA) "$(TR_CFGFILE)" "$(DESTDIR)$(bindir)" | ||
| + @$(INSTALL_DATA) "$(TR_CFGFILE)" @TERMUX_PREFIX@/share/games/trigger-rally | ||
| @for file in $(TR_DATAFILES); do \ | ||
| $(INSTALL_DATA) -D "$(TR_DATADIR)/$$file" "$(DESTDIR)$(datadir)/$(DISTNAME)/$$file"; \ | ||
| done | ||
| diff -ur orig/src/Trigger/main.cpp mod/src/Trigger/main.cpp | ||
| --- orig/src/Trigger/main.cpp 2019-02-26 23:35:48.000000000 +0100 | ||
| +++ mod/src/Trigger/main.cpp 2025-08-08 14:16:40.896150117 +0200 | ||
| @@ -471,7 +471,7 @@ | ||
| if (!PHYSFS_exists(cfgfilename.c_str())) { | ||
| #ifdef UNIX | ||
| const std::vector<std::string> cfghidingplaces { | ||
| - "/usr/share/games/trigger-rally/" | ||
| + "@TERMUX_PREFIX@/share/games/trigger-rally/" | ||
| }; | ||
|
|
||
| for (const std::string &cfgpath: cfghidingplaces) |
This file contains hidden or 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,15 @@ | ||
| [Desktop Entry] | ||
| Name=Trigger Rally | ||
| Icon=trigger-rally | ||
| Comment=3D rally racing car game | ||
| Comment[de]=3D Rally-Autorennen | ||
| Comment[fr_FR]=un jeu de rally en 3D | ||
| Comment[ro_RO]=Un joc în 3D cu curse de raliu | ||
| Exec=trigger-rally | ||
| Terminal=false | ||
| StartupNotify=false | ||
| Type=Application | ||
| TryExec=trigger-rally | ||
| Categories=Game;ArcadeGame; | ||
| Keywords=racing;tracks; | ||
| Keywords[de]=Rennstrecke; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does it depend on
ndk-multilib? that is a bit strange