mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-07-13 17:51:43 +00:00
Update Celestia to 1.7.12 (593)
This commit is contained in:
parent
ed86a55dcf
commit
f602880729
1 changed files with 70 additions and 2 deletions
|
|
@ -543,6 +543,74 @@ Builds:
|
||||||
- cd ..
|
- cd ..
|
||||||
- sh "$(pwd)/space.celestia.mobilecelestia/app/run_gperf.sh" "$(pwd)/Celestia"
|
- sh "$(pwd)/space.celestia.mobilecelestia/app/run_gperf.sh" "$(pwd)/Celestia"
|
||||||
|
|
||||||
|
- versionName: 1.7.12
|
||||||
|
versionCode: 593
|
||||||
|
commit: 435cb5a495bfb2c7bb14f3bc2ed226a4f8257d20
|
||||||
|
timeout: 30000
|
||||||
|
subdir: app
|
||||||
|
sudo:
|
||||||
|
- echo "deb https://deb.debian.org/debian trixie main" > /etc/apt/sources.list.d/trixie.list
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y -t trixie openjdk-21-jdk-headless
|
||||||
|
- update-alternatives --auto java
|
||||||
|
- apt-get install cmake tcsh gcc-multilib gettext gperf g++-multilib make meson
|
||||||
|
ncompress wget xz-utils zsh
|
||||||
|
gradle:
|
||||||
|
- unofficial
|
||||||
|
prebuild:
|
||||||
|
- export CELESTIA_HASH=$(sed -nr 's/^Celestia=(.*)$/\1/p' ../versions.txt)
|
||||||
|
- export CONTENT_HASH=$(sed -nr 's/^CelestiaContent=(.*)$/\1/p' ../versions.txt)
|
||||||
|
- export LOC_HASH=$(sed -nr 's/^CelestiaLocalization=(.*)$/\1/p' ../versions.txt)
|
||||||
|
- export DEP_HASH=$(sed -nr 's/^apple-android=(.*)$/\1/p' ../versions.txt)
|
||||||
|
- cd ../../ && mkdir deps && cd deps
|
||||||
|
- git clone https://dev.azure.com/CelestiaProject/Celestia/_git/apple-android
|
||||||
|
- git clone --recurse-submodules https://github.com/celestiamobile/Celestia
|
||||||
|
- git clone https://github.com/CelestiaProject/CelestiaContent
|
||||||
|
- git clone https://github.com/celestiamobile/CelestiaLocalization
|
||||||
|
- cd Celestia && git reset --hard $CELESTIA_HASH && cd -
|
||||||
|
- cd CelestiaContent && git reset --hard $CONTENT_HASH && cd -
|
||||||
|
- cd CelestiaLocalization && git reset --hard $LOC_HASH && cd -
|
||||||
|
- cd apple-android && git reset --hard $DEP_HASH
|
||||||
|
- chmod +x download.sh prepare_icu.sh build_android.sh
|
||||||
|
- mkdir tmp && cd tmp
|
||||||
|
- cp ../download.sh .
|
||||||
|
- cp ../versions.sh .
|
||||||
|
- ./download.sh
|
||||||
|
- mv json.hpp ../.
|
||||||
|
- mkdir targz tarxz tgz tz
|
||||||
|
- for i in $(ls | grep ".tar.gz"); do cd "targz"; tar -xzf "../${i}"; pwd; cd
|
||||||
|
../; done
|
||||||
|
- for i in $(ls | grep ".tar.xz"); do cd "tarxz"; tar -xJf "../${i}"; pwd;
|
||||||
|
cd ../; done
|
||||||
|
- for i in $(ls | grep ".tgz"); do cd "tgz"; tar -xzf "../${i}"; pwd; cd ../;
|
||||||
|
done
|
||||||
|
- for i in $(ls | grep ".tar.Z"); do cd "tz"; tar -xZf "../${i}"; pwd; cd ../;
|
||||||
|
done
|
||||||
|
- cd ../../../
|
||||||
|
- mv deps space.celestia.mobilecelestia/.
|
||||||
|
scandelete:
|
||||||
|
- deps
|
||||||
|
build:
|
||||||
|
- mv ../deps/* ../../.
|
||||||
|
- rm -d ../deps
|
||||||
|
- cd ../../apple-android/tmp
|
||||||
|
- cd targz; for i in $(ls); do tar -cvzf "../../${i}.tar.gz" "${i}"; done; cd
|
||||||
|
..
|
||||||
|
- cd tarxz; for i in $(ls); do tar -cvJf "../../${i}.tar.xz" "${i}"; done; cd
|
||||||
|
..
|
||||||
|
- cd tgz; for i in $(ls); do tar -cvzf "../../${i}.tgz" "${i}"; done; cd ..
|
||||||
|
- cd tz; for i in $(ls); do tar -cvZf "../../${i}.tar.Z" "${i}"; done; cd ../../
|
||||||
|
- rm -rf tmp
|
||||||
|
- ./prepare_icu.sh
|
||||||
|
- mkdir android
|
||||||
|
- export SDK_PATH="$$SDK$$/ndk/$(ls $$SDK$$/ndk/)"
|
||||||
|
- ./build_android.sh "$(pwd)/android" "$SDK_PATH"
|
||||||
|
- cd ../space.celestia.mobilecelestia
|
||||||
|
- mkdir dependencies
|
||||||
|
- mv ../apple-android/android/* dependencies/.
|
||||||
|
- cd ..
|
||||||
|
- sh "$(pwd)/space.celestia.mobilecelestia/app/run_gperf.sh" "$(pwd)/Celestia"
|
||||||
|
|
||||||
MaintainerNotes: |-
|
MaintainerNotes: |-
|
||||||
Celestia for android requires 4 more repositories to build:
|
Celestia for android requires 4 more repositories to build:
|
||||||
- Celestia;
|
- Celestia;
|
||||||
|
|
@ -571,5 +639,5 @@ MaintainerNotes: |-
|
||||||
|
|
||||||
AutoUpdateMode: Version
|
AutoUpdateMode: Version
|
||||||
UpdateCheckMode: Tags
|
UpdateCheckMode: Tags
|
||||||
CurrentVersion: 1.7.11
|
CurrentVersion: 1.7.12
|
||||||
CurrentVersionCode: 586
|
CurrentVersionCode: 593
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue