Add auto update script and needed script metadata

This commit is contained in:
BtbN
2022-07-12 19:55:52 +02:00
parent 38fccdcd44
commit 42202d95bc
9 changed files with 88 additions and 2 deletions

View File

@ -2,6 +2,7 @@
SCRIPT_REPO="https://github.com/openssl/openssl.git"
SCRIPT_COMMIT="OpenSSL_1_1_1q"
SCRIPT_TAGFILTER="OpenSSL_1_1_1*"
ffbuild_enabled() {
return 0

View File

@ -1,5 +1,7 @@
#!/bin/bash
SCRIPT_SKIP="1"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0

View File

@ -2,6 +2,7 @@
SCRIPT_REPO="https://github.com/ARMmbed/mbedtls.git"
SCRIPT_COMMIT="v3.2.1"
SCRIPT_TAGFILTER="v3.*"
ffbuild_enabled() {
return 0

View File

@ -1,5 +1,7 @@
#!/bin/bash
SCRIPT_SKIP="1"
ffbuild_enabled() {
[[ $TARGET == win* ]]
}

View File

@ -1,5 +1,7 @@
#!/bin/bash
SCRIPT_SKIP="1"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0

View File

@ -2,7 +2,7 @@
SCRIPT_REPO="https://github.com/georgmartius/vid.stab.git"
# TODO: clamp to e7715fc until georgmartius/vid.stab#104 get fixed
SCRIPT_COMMIT="e7715fcf329573cdcff5c57d0e4a25f4c3a0cb7f"
SCRIPT_COMMIT_PINNED="e7715fcf329573cdcff5c57d0e4a25f4c3a0cb7f"
ffbuild_enabled() {
[[ $VARIANT == lgpl* ]] && return -1
@ -10,7 +10,7 @@ ffbuild_enabled() {
}
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" vidstab
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT_PINNED" vidstab
cd vidstab
mkdir build && cd build

View File

@ -2,6 +2,7 @@
SCRIPT_REPO="https://github.com/KhronosGroup/Vulkan-Headers.git"
SCRIPT_COMMIT="v1.3.217"
SCRIPT_TAGFILTER="v?.*.*"
ffbuild_enabled() {
[[ $ADDINS_STR == *4.4* ]] && return -1

View File

@ -1,5 +1,7 @@
#!/bin/bash
SCRIPT_SKIP="1"
ffbuild_enabled() {
[[ $TARGET == linux* ]]
}