Update tpt-libs

Also make it easier to test tpt-libs builds locally by making it possible to point build.sh at a local tpt-libs repo and move installation of build dependencies to build.sh.
This commit is contained in:
Tamás Bálint Misius 2023-01-01 17:33:39 +01:00
parent 80448440e9
commit fcc259e9b9
No known key found for this signature in database
GPG Key ID: 5B472A12F6ECA9F2
55 changed files with 194 additions and 170 deletions

30
.github/build.sh vendored
View File

@ -43,6 +43,26 @@ aarch64-android-bionic-static) ;;
*) >&2 echo "configuration $BSH_HOST_ARCH-$BSH_HOST_PLATFORM-$BSH_HOST_LIBC-$BSH_STATIC_DYNAMIC is not supported" && exit 1;;
esac
case $BSH_BUILD_PLATFORM in
linux)
sudo apt update
if [[ $BSH_STATIC_DYNAMIC == static ]]; then
sudo apt install libc6-dev libc6-dev-i386
else
sudo apt install libluajit-5.1-dev libcurl4-openssl-dev libfftw3-dev zlib1g-dev libsdl2-dev libbz2-dev libjsoncpp-dev
fi
if [[ $BSH_HOST_PLATFORM-$BSH_HOST_LIBC == windows-mingw ]]; then
sudo apt install g++-mingw-w64-x86-64
fi
;;
darwin)
brew install pkg-config binutils
if [[ $BSH_STATIC_DYNAMIC != static ]]; then
brew install luajit curl fftw zlib sdl2 bzip2 jsoncpp
fi
;;
esac
function inplace_sed() {
local subst=$1
local path=$2
@ -252,20 +272,28 @@ if [[ $BSH_HOST_PLATFORM-$BSH_HOST_ARCH == darwin-aarch64 ]]; then
meson_configure+=$'\t'--cross-file=.github/macaa64-ghactions.ini
fi
if [[ $RELEASE_TYPE == tptlibsdev ]] && ([[ $BSH_HOST_PLATFORM == windows ]] || [[ $BSH_STATIC_DYNAMIC == static ]]); then
if [[ -z ${TPTLIBSREMOTE-} ]]; then
if [[ -z "${GITHUB_REPOSITORY_OWNER-}" ]]; then
>&2 echo "GITHUB_REPOSITORY_OWNER not set"
exit 1
fi
tptlibsremote=https://github.com/$GITHUB_REPOSITORY_OWNER/tpt-libs
else
tptlibsremote=$TPTLIBSREMOTE
fi
if [[ "$BSH_HOST_ARCH-$BSH_HOST_PLATFORM-$BSH_HOST_LIBC-$BSH_STATIC_DYNAMIC $BSH_BUILD_PLATFORM" == "x86_64-windows-mingw-dynamic linux" ]]; then
>&2 echo "this configuration is not supported in tptlibsdev mode"
touch $ASSET_PATH
exit 0
fi
tptlibsbranch=$(echo $RELEASE_NAME | cut -d '-' -f 2-) # $RELEASE_NAME is tptlibsdev-BRANCH
if [[ -d build-tpt-libs ]] && [[ ${TPTLIBSRESET-} == yes ]]; then
rm -rf build-tpt-libs
fi
if [[ ! -d build-tpt-libs/tpt-libs ]]; then
mkdir -p build-tpt-libs
cd build-tpt-libs
git clone https://github.com/$GITHUB_REPOSITORY_OWNER/tpt-libs --branch $tptlibsbranch --depth 1
git clone $tptlibsremote --branch $tptlibsbranch --depth 1
cd ..
fi
tpt_libs_vtag=v00000000000000

View File

@ -31,6 +31,7 @@ jobs:
app_vendor: ${{ steps.prepare.outputs.app_vendor }}
do_publish: ${{ steps.prepare.outputs.do_publish }}
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
@ -58,21 +59,14 @@ jobs:
fail-fast: false
matrix: ${{ fromJSON(needs.prepare.outputs.build_matrix) }}
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: python -m pip install meson ninja
- if: matrix.bsh_build_platform == 'darwin'
run: brew install pkg-config coreutils binutils bash
- if: matrix.bsh_build_platform == 'darwin' && matrix.bsh_static_dynamic != 'static'
run: brew install luajit curl fftw zlib sdl2 bzip2 jsoncpp
- if: matrix.bsh_build_platform == 'linux' && matrix.bsh_host_libc == 'mingw'
run: sudo apt update && sudo apt install g++-mingw-w64-x86-64
- if: matrix.bsh_build_platform == 'linux' && matrix.bsh_static_dynamic != 'static'
run: sudo apt update && sudo apt install libluajit-5.1-dev libcurl4-openssl-dev libfftw3-dev zlib1g-dev libsdl2-dev libbz2-dev libjsoncpp-dev
- if: matrix.bsh_build_platform == 'linux' && matrix.bsh_static_dynamic == 'static'
run: sudo apt update && sudo apt install libc6-dev libc6-dev-i386
run: brew install bash coreutils
- run: bash -c './.github/build.sh'
env:
BSH_HOST_ARCH: ${{ matrix.bsh_host_arch }}
@ -130,6 +124,7 @@ jobs:
matrix: ${{ fromJSON(needs.prepare.outputs.publish_matrix) }}
if: needs.prepare.outputs.do_publish == 'yes'
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
@ -147,6 +142,7 @@ jobs:
needs: [build, publish, prepare]
if: needs.prepare.outputs.do_publish == 'yes'
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- run: ./.github/starcatcher-release.sh
env:

View File

@ -81,7 +81,7 @@ tpt_libs_debug = is_debug ? 'debug' : 'release'
tpt_libs_variant = '@0@-@1@-@2@-@3@'.format(host_arch, host_platform, host_libc, tpt_libs_static)
tpt_libs_vtag = get_option('tpt_libs_vtag')
if tpt_libs_vtag == ''
tpt_libs_vtag = 'v20221223184203'
tpt_libs_vtag = 'v20230101182417'
endif
if tpt_libs_static != 'none'
if tpt_libs_variant not in [

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221223184203.zip
source_hash = d9fd15fd80ceaf1796c0501df3c35ecd58706fc1cba64a5739cee365e1172d40

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230101182417.zip
source_hash = 32b4fd3bbe3346731d1ae72aadf6aff88fb77a4b97d9e27d59a50a7450ba9ea4

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221223184203.zip
source_hash = 8af13fe42816067199515dc41e81c565ea360a98bdc5d4ddabe10fbdff0d1a52

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230101182417.zip
source_hash = 84dc5a4600736624c816ac545fa3bce4cc6059dcb34edcc78e4021a421eb8151

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221223184203.zip
source_hash = 0793a90a604b157751fb5b4b62828d98c28770389db73e9b100c33f21ed1d4f2

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230101182417.zip
source_hash = 4ffb06da9d44fda130add5f909f4dd60593e80348c789014ba15424c77577a49

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221223184203.zip
source_hash = 19b44179d6b6253d7fb21432a64563dc3640bfa28af5fa427912dcf582169aa3

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230101182417.zip
source_hash = 1ada5f8513282b2ed8c2c2c786ae5a608b409b2a6ad10aa0bc23694bc6cd61d7

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221223184203.zip
source_hash = e22de49e2614738f6c2f1d0e3bbb6c7b2f18e07d9bbd8bc6215438d6604c2aef

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230101182417.zip
source_hash = 3d55ad05f9157c32aade2f738ebbf17e2bb41300ebc89af44ae87a191c085476

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-arm-android-bionic-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-arm-android-bionic-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-release-v20221223184203.zip
source_hash = 8586c04b6443303bb30f3410c17d15bc3132a5e949b97bd99406b214e894226e

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-arm-android-bionic-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-arm-android-bionic-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-release-v20230101182417.zip
source_hash = 425024f13319d8a29e0bccb93863b83b3e8a2861439a3ab3c3452b3c938c363b

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221223184203.zip
source_hash = 5a02248b6655208748a27aba50f2d6b787690c16048d2d9ab5f6a559a3bf5841

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230101182417.zip
source_hash = f285d95d994b5a381c816a9dc8044c5daa5bf2002f36fd5b9109643231db1247

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-android-bionic-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86-android-bionic-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-release-v20221223184203.zip
source_hash = 9667f7fb986dfe9d87a567d8a59c35d7e464ab53ad4b496109289e5ae8915e0c

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-android-bionic-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-android-bionic-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-release-v20230101182417.zip
source_hash = 5428b5b21c02e0b14bd4be1f200c9f8b272fcc59882f0d3337e523533b555826

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221223184203.zip
source_hash = a38fc82a77c3855f150a469d086bd4827c5da76e5434bb5b19b1834a527ebc49

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230101182417.zip
source_hash = e0f1c3b57cf0277fc3e77864be1b95b53137a71040e1355f68a5faf15ed3bc2c

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221223184203.zip
source_hash = 250c72b6cde59f73cce618a976f22ba49421af8acf14674e9d81aeeb9c8f0443

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230101182417.zip
source_hash = 99ab721540a0d22347ed78b75816050408609611821aa453191476e469c4e09e

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221223184203.zip
source_hash = 99966e124c6c4b7e93d43b885dfbe39ea88fcb2cbd20239b2ced643283a34cdf

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230101182417.zip
source_hash = 2b610634de0b70d84a47b3c0b2d1fbab1d877b0ba6fed2e9a7cf81dffe80b1c4

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221223184203.zip
source_hash = 032ace429309624e7cb9f49378000a15162acd79adc7c5b085d5c6a9fb0a7bd3

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230101182417.zip
source_hash = a3f33b8b1332c0bb81ae81903c7091f45b4f349e5d36b500254c26eca2e34757

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221223184203.zip
source_hash = d96330e5057f3a8f9a0d2edfabd63e1ad2b86733bd43a0e1c290ca59e6edc8e5

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230101182417.zip
source_hash = e0c61a46edacf3d8e867c31646588f9d95e0fdfb8e96b3442d9f6b52b6490db4

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221223184203.zip
source_hash = e62860adc1250ac67406dede58d9f4171cd44a4bf5a4ff0a56cf606650c36178

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230101182417.zip
source_hash = ee609039b1167460a49f712713cb6d99fef33479088513c4078e47b06225553e

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221223184203.zip
source_hash = 45a09ba7f3a3a3560e81b045973b7998561604bbbf4cca270d3e5861452efafa

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230101182417.zip
source_hash = 108fc60e3601fe2784c17294eb159db97f494b3bbe396af8db74d43694acfa54

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221223184203.zip
source_hash = caa92a0ff2dda2f3defa95d01196e7d415bfd246bb8c31a949035bf246a91c6b

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230101182417.zip
source_hash = 55d8525ed077e8fef0ad74baeda6d4cbd23d4da1c70d39f44dc935ab4fd3a8ce

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221223184203.zip
source_hash = b5a4a7503195439b696d9763ced117aa281c6b5cbf04191e33e90189fb5b7baf

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230101182417.zip
source_hash = 4930ddc764e357e79bcaa83a0aef7cf88114a61adfc735c355cc1b4e04041ec5

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221223184203.zip
source_hash = ca8d14e51fd14934435b4cdb58c9c474c335770e48b6c0cd5df24e411558a607

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230101182417.zip
source_hash = c1e55114d752985b35e767ae2d0ba91e1309016c9eb573dfa9f760ba912a8a63

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221223184203.zip
source_hash = 9b6c40b30a9a3851a393eea6e070845d447a1d09812e31fe2da721854b6d76ad

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230101182417.zip
source_hash = 1486531df79f5013cc054ee33f07c638910d12605455eff38c9a2740105eba8e

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221223184203.zip
source_hash = 57aa50ca1fd1d98e781ec678e5655178ff3350d0b6e44a985f04127ba49ffb45

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230101182417.zip
source_hash = d741d2b4b9904be4b66b3386bc225e6a83d5150236da30014511c1e2490d21be

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221223184203.zip
source_hash = 1e5e27cc50993fad984863e0b6fb3592bdbc901fa0f902629c9360a7fed74163

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230101182417.zip
source_hash = c0ce5d680eeac02020b9371b8c88996be4259b86ff7da0dfa8bfd9d8d4fda236

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221223184203.zip
source_hash = e0a65ebcdf1133876d71a9f17d882ab25a8cbabff5e487e0f34ff7a65a8991e6

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230101182417.zip
source_hash = f1aad736e0e6e60b7bee8c271922b6cc8f6d0cd1af895a6470dd1448027f4e8e

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221223184203.zip
source_hash = b2157b9881e3ec6eceb0e40244b2ff22696c899ec7aeea29d3633ea7327558b7

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230101182417.zip
source_hash = 85633cb9f8b257bdcb75ae414d3642183b370d82120dfbf4152033b39dbaf536

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221223184203.zip
source_hash = be0f238ee44ab45498779dc0037f23aa6679294a38d6beec48079eb4c27ca477

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230101182417.zip
source_hash = 39617c2836806dc479fa7c26b7c83bc045b471c70d97063876a1ab6352156260

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221223184203.zip
source_hash = f34e7decb5b753295a0074f6e8aafccc6fe3d2044ce19bb1de301b69756cbf2b

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230101182417.zip
source_hash = 7bfb1e49c47c5feb3645ab4f90e8a77b753c4acd585e8868fe91c992815a4291

View File

@ -1,6 +0,0 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221223184203
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221223184203/tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221223184203.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221223184203.zip
source_hash = 61abc8e8986f64aa6bbe43b52a806dc98005cbc7bab35bfbcd5c8cdb1becd24e

View File

@ -0,0 +1,6 @@
[wrap-file]
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230101182417
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230101182417.zip
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230101182417.zip
source_hash = 3573cfc463855a64ce758548c16088637b8a3337dfc72b5e6add0e17534ab8b1