authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2023-02-27 20:16:55 -08:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2023-02-27 20:16:55 -08:00
logb40ae2bfbe8e37a1f7c5dbab28af0e8e350b2603
treee1f9717a28f826793fee2a9d7d6cf6814db226cf
parent4a984c27e0aa967070eae951d23ba51ef0737d3a
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Create zigmod.yml


1 files changed, 28 insertions(+), 0 deletions(-)

zigmod.yml created+28
......@@ -0,0 +1,28 @@
1id: g982zq6e8wsvnmduerpbf8787hu85brugmngn8wf
2name: yaml
3main: yaml.zig
4license: MIT
5description: A Yaml parser built on top of libyaml
6dependencies:
7 - src: git https://github.com/yaml/libyaml tag-0.2.5
8 id: 8mdbh0zuneb0i3hs5jby5je0heem1i6yxusl7c8y8qx68hqc
9 license: MIT
10 c_include_dirs:
11 - include
12 c_source_flags:
13 - -DYAML_VERSION_MAJOR=0
14 - -DYAML_VERSION_MINOR=2
15 - -DYAML_VERSION_PATCH=5
16 - -DYAML_VERSION_STRING="0.2.5"
17 - -DYAML_DECLARE_STATIC=1
18 c_source_files:
19 - src/api.c
20 - src/dumper.c
21 - src/emitter.c
22 - src/loader.c
23 - src/parser.c
24 - src/reader.c
25 - src/scanner.c
26 - src/writer.c
27
28 - src: git https://github.com/nektro/zig-extras