-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.zig.zon
70 lines (66 loc) · 2.56 KB
/
build.zig.zon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.{
.name = "libffmpeg",
.version = "7.0.1-5",
.minimum_zig_version = "0.14.0-dev.1359+e9a00ba7f",
.dependencies = .{
.libz = .{
.url = "https://github.com/allyourcodebase/zlib/archive/refs/tags/1.3.1-3.tar.gz",
.hash = "1220138f4aba0c01e66b68ed9e1e1e74614c06e4743d88bc58af4f1c3dd0aae5fea7",
},
.mbedtls = .{
.url = "git+https://github.com/allyourcodebase/mbedtls#40a2c1126b45f87d19b256229620bc2995637e5a",
.hash = "122034bd019496a4e20a775116c53ef05e3247e9a98436b3407d4c0503fa3a16cd42",
.lazy = true,
},
.openssl = .{
.url = "https://github.com/allyourcodebase/openssl/archive/refs/tags/3.3.1-1.tar.gz",
.hash = "12207c40cefa38fe90e4230dfba2e5c76b37e1ee36602512cad8ff0501f892002a65",
.lazy = true,
},
.libressl = .{
.url = "https://github.com/allyourcodebase/libressl/archive/refs/tags/3.9.2+1.tar.gz",
.hash = "12201f5cc06c88f191696106723797449baacb6ea38b07b6cf31c18c0382a6bea33e",
.lazy = true,
},
.libmp3lame = .{
.url = "https://github.com/andrewrk/libmp3lame/archive/refs/tags/3.100.1-4.tar.gz",
.hash = "1220da08eac618097d61be76506ddb71ecee9e76cb709a36b761c248262057846670",
},
.libvorbis = .{
.url = "https://github.com/andrewrk/libvorbis/archive/refs/tags/1.3.8-3.tar.gz",
.hash = "122074e0bf09c3622780e697c11c6744e763dd63777e480baf2b583ee3ab6a02ff14",
},
.libogg = .{
.url = "https://github.com/andrewrk/libogg/archive/refs/tags/1.3.6-2.tar.gz",
.hash = "1220b3e1fb33317c92f9ead09630f6b4be59e80d0a8780754f8aa4ee7da61cb7b47a",
},
// This is used to compile some assembly files into object files for x86.
// Without this, ffmpeg considers the build "crippled".
.nasm = .{
.url = "https://github.com/allyourcodebase/nasm/archive/refs/tags/2.16.1-3.tar.gz",
.hash = "12200a9194f9cdd05e9ff23729f4ed0e54f51abe09bd6eaf61b58609791647b141d2",
},
},
.paths = .{
"COPYING.GPLv2",
"COPYING.GPLv3",
"COPYING.LGPLv2.1",
"COPYING.LGPLv3",
"LICENSE.md",
"README.md",
"av.zig",
"build.zig",
"build.zig.zon",
"compat",
"config_components.h",
"doc",
"libavcodec",
"libavdevice",
"libavfilter",
"libavformat",
"libavutil",
"libpostproc",
"libswresample",
"libswscale",
},
}