Improve more recipes

This commit is contained in:
Ribbon 2026-01-29 11:43:04 -03:00
parent 092c8e5dd8
commit acb624b6d7
12 changed files with 35 additions and 13 deletions

View File

@ -8,3 +8,5 @@ script = """
mkdir -pv "${COOKBOOK_STAGE}/home/user/pts"
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user/pts"
"""
[package]
dependencies = ["php84"]

View File

@ -1,7 +1,10 @@
#TODO not compiled or tested
# build instructions: https://code.videolan.org/videolan/dav1d#compile
[source]
git = "https://code.videolan.org/videolan/dav1d"
rev = "48035599cdd4e4415732e408c407e0c1cd1c7444"
tar = "https://downloads.videolan.org/videolan/dav1d/1.5.3/dav1d-1.5.3.tar.xz"
shallow_clone = true
[build]
template = "meson"
mesonflags = [
"-Denable_tests=false",
]

View File

@ -1,7 +1,7 @@
#TODO not compiled or tested
# lacking build instructions
[source]
git = "https://github.com/knik0/faad2"
rev = "2.11.2"
shallow_clone = true
[build]
template = "cmake"

View File

@ -1,5 +1,6 @@
#TODO "malloc(): invalid size (unsorted)" error
[source]
git = "https://github.com/xiph/rav1e"
shallow_clone = true
[build]
template = "cargo"

View File

@ -1,6 +1,8 @@
#TODO missing script for building, see https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/master/Docs/Build-Guide.md#linux-operating-systems-64-bit
#TODO not compiled or tested
# build instructions: https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/master/Docs/Build-Guide.md#linux-operating-systems-64-bit
[source]
git = "https://gitlab.com/AOMediaCodec/SVT-AV1"
rev = "59645eea34e2815b627b8293aa3af254eddd0d69"
rev = "v4.0.1"
shallow_clone = true
[build]
template = "custom"
template = "cmake"

View File

@ -2,6 +2,6 @@
# build instructions: https://github.com/OpenVisualCloud/SVT-HEVC#linux-operating-systems-64-bit
[source]
git = "https://github.com/OpenVisualCloud/SVT-HEVC"
rev = "b65eba07e6dee37407631cc441561960838b0333"
shallow_clone = true
[build]
template = "cmake"

View File

@ -2,5 +2,7 @@
# build instructions: https://github.com/OpenVisualCloud/SVT-VP9#linux-operating-systems-64-bit
[source]
git = "https://github.com/OpenVisualCloud/SVT-VP9"
rev = "v0.3.1"
shallow_clone = true
[build]
template = "cmake"

View File

@ -2,6 +2,10 @@
# build instructions: https://github.com/ultravideo/uvg266#compiling-uvg266
[source]
git = "https://github.com/ultravideo/uvg266"
rev = "9add13b7053a6ba3f6b22bf82728e01fc437a447"
rev = "v0.8.1"
shallow_clone = true
[build]
template = "cmake"
cmakeflags = [
"-DBUILD_TESTS=OFF"
]

View File

@ -2,6 +2,7 @@
# build instructions: https://github.com/fraunhoferhhi/vvenc/wiki/Build#build-using-plain-cmake
[source]
git = "https://github.com/fraunhoferhhi/vvenc"
rev = "eea6fce28c8e822a0ece7a343a10fd5d6dd0e7bb"
rev = "v1.14.0"
shallow_clone = true
[build]
template = "cmake"

View File

@ -1,6 +1,6 @@
#TODO compilation error - missing header
#TODO compilation error: missing header
[source]
tar = "https://github.com/dbry/WavPack/releases/download/5.7.0/wavpack-5.7.0.tar.xz"
tar = "https://github.com/dbry/WavPack/releases/download/5.9.0/wavpack-5.9.0.tar.xz"
[build]
template = "configure"
dependencies = [

View File

@ -1,5 +1,7 @@
#TODO the redox target is not supported on the configure script
[source]
git = "https://code.videolan.org/videolan/x264"
branch = "stable"
shallow_clone = true
[build]
template = "configure"

View File

@ -1,6 +1,11 @@
#TODO not compiled or tested
# build instructions: https://bitbucket.org/multicoreware/x265_git/src/master/build/README.txt#lines-68
[source]
tar = "https://bitbucket.org/multicoreware/x265_git/downloads/x265_3.5.tar.gz"
tar = "https://bitbucket.org/multicoreware/x265_git/downloads/x265_4.1.tar.gz"
[build]
template = "cmake"
template = "custom"
script = """
COOKBOOK_SOURCE="${COOKBOOK_SOURCE}/source"
DYNAMIC_INIT
cookbook_cmake
"""