mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-06-12 21:37:38 +02:00
Add auto update script and needed script metadata
This commit is contained in:
@ -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
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPT_SKIP="1"
|
||||
|
||||
ffbuild_enabled() {
|
||||
[[ $TARGET != linux* ]] && return -1
|
||||
return 0
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
SCRIPT_REPO="https://github.com/ARMmbed/mbedtls.git"
|
||||
SCRIPT_COMMIT="v3.2.1"
|
||||
SCRIPT_TAGFILTER="v3.*"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPT_SKIP="1"
|
||||
|
||||
ffbuild_enabled() {
|
||||
[[ $TARGET == win* ]]
|
||||
}
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPT_SKIP="1"
|
||||
|
||||
ffbuild_enabled() {
|
||||
[[ $TARGET != linux* ]] && return -1
|
||||
return 0
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPT_SKIP="1"
|
||||
|
||||
ffbuild_enabled() {
|
||||
[[ $TARGET == linux* ]]
|
||||
}
|
||||
|
Reference in New Issue
Block a user