-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathrecipe.yaml
More file actions
48 lines (41 loc) · 1.19 KB
/
recipe.yaml
File metadata and controls
48 lines (41 loc) · 1.19 KB
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
context:
version: 0.2.2
mojo_version: "=0.25.7"
package:
name: mojo-ini
version: ${{ version }}
source:
- git: https://github.com/DataBooth/mojo-ini.git
tag: v0.2.2
build:
number: 0
script:
- mkdir -p ${PREFIX}/lib/mojo
- mojo package src/ini -o ${PREFIX}/lib/mojo/ini.mojopkg
requirements:
build:
- mojo-compiler ${{ mojo_version }}
host:
- mojo-compiler ${{ mojo_version }}
run:
- ${{ pin_compatible('mojo-compiler') }}
tests:
- files:
source:
- test_package.mojo
script:
- mojo -I ${PREFIX}/lib/mojo test_package.mojo
about:
homepage: https://github.com/DataBooth/mojo-ini
license: Apache-2.0
license_file: LICENSE
summary: INI parser and writer for Mojo with Python configparser compatibility
description: |
mojo-ini provides native INI parsing and writing in Mojo with zero Python dependencies.
It supports classic INI syntax, multiline values (indented continuation), comments,
and includes a clean public API: parse(), to_ini(), parse_file(), write_file().
documentation: https://github.com/DataBooth/mojo-ini#readme
repository: https://github.com/DataBooth/mojo-ini
extra:
recipe-maintainers:
- mjboothaus