mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-19 20:29:15 +00:00
Added build recipe for a new game : pirate solitaire
This commit is contained in:
parent
6ed920a34f
commit
900b487200
1 changed files with 57 additions and 0 deletions
57
metadata/io.itch.pirate_solitaire.yml
Normal file
57
metadata/io.itch.pirate_solitaire.yml
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
Categories:
|
||||
- Games
|
||||
License: MIT
|
||||
AuthorName: Victor Pernet
|
||||
AuthorWebSite: https://victor-pernet.itch.io/
|
||||
WebSite: https://victor-pernet.itch.io/pirate-solitaire
|
||||
SourceCode: https://github.com/Pheonyxior/Pirate-Solitaire-Git-Repo/tree/master
|
||||
IssueTracker: https://github.com/Pheonyxior/Pirate-Solitaire-Git-Repo/issues
|
||||
|
||||
RepoType: git
|
||||
Repo: https://github.com/Pheonyxior/Pirate-Solitaire-Git-Repo
|
||||
|
||||
Builds:
|
||||
- versionName: '1.0'
|
||||
versionCode: 1
|
||||
commit: 0f2f2b4f88b7d1a288afd21ec0f6316c177f36ac
|
||||
sudo:
|
||||
- apt-get update
|
||||
- apt-get install -y pkgconf clang scons
|
||||
output: Pirate_Solitaire.apk
|
||||
srclibs:
|
||||
- Godot@4.1-stable
|
||||
prebuild:
|
||||
- mkdir -p android
|
||||
- pushd $$Godot$$
|
||||
- scons --clean platform=linuxbsd target=editor use_llvm=yes tools=yes
|
||||
- scons --clean platform=android arch=arm64v8 production=yes target=template_release
|
||||
- cd platform/android/java
|
||||
- gradle cleanGodotTemplates
|
||||
- popd
|
||||
build:
|
||||
- export ANDROID_SDK_ROOT=$$SDK$$
|
||||
- export ANDROID_NDK_ROOT=$$NDK$$
|
||||
- export GODOT_CFG=~/.config/godot/editor_settings-4.tres
|
||||
- export GODOT_TMPL=$$Godot$$/bin/android_release.apk
|
||||
- pushd $$Godot$$
|
||||
- scons -j `nproc` platform=linuxbsd target=editor use_llvm=yes tools=yes
|
||||
- scons -j `nproc` platform=android arch=arm64v8 production=yes target=template_release
|
||||
- cd platform/android/java
|
||||
- gradle generateGodotTemplates
|
||||
- popd
|
||||
- $$Godot$$/bin/godot.linuxbsd.editor.x86_64.llvm --headless --check-only --quit
|
||||
project.godot
|
||||
- sed -i -e 's:\(^.*android_sdk_path\)\s*=.*$:\1 = "$$SDK$$":' $GODOT_CFG
|
||||
- sed -i -e 's:\(^.*package/signed\)\s*=.*$:\1 = false:' export_presets.cfg
|
||||
- sed -i -e 's:\(^.*use_gradle_build\)\s*=.*$:\1 = false:' export_presets.cfg
|
||||
- sed -i -e '/custom_template\/release/s|=.*|="$$Godot$$/bin/android_release.apk"|'
|
||||
export_presets.cfg
|
||||
- $$Godot$$/bin/godot.linuxbsd.editor.x86_64.llvm --headless --export-release
|
||||
- $$Godot$$/bin/godot.linuxbsd.editor.x86_64.llvm --headless --export-release
|
||||
'Android' Pirate_Solitaire.apk
|
||||
ndk: 25.1.8937393
|
||||
|
||||
AutoUpdateMode: None
|
||||
UpdateCheckMode: None
|
||||
CurrentVersion: '1.0'
|
||||
CurrentVersionCode: 1
|
||||
Loading…
Reference in a new issue