pantry/projects/github.com/mattrobenolt/jinja2-cli/package.yml

25 lines
498 B
YAML
Raw Normal View History

2023-03-30 09:00:57 +03:00
distributable:
url: https://github.com/mattrobenolt/jinja2-cli/archive/refs/tags/{{version}}.tar.gz
strip-components: 1
versions:
github: mattrobenolt/jinja2-cli/tags
dependencies:
python.org: '>=3.7'
build: python-venv.sh {{prefix}}/bin/jinja2
provides:
- bin/jinja2
test:
script: |
echo "{{ title }}" > test.tmpl
OUT="$(jinja2 test.tmpl $FIXTURE --format=json)"
test "$OUT" = "tea.xyz"
fixture: |
{
"title": "tea.xyz",
"url": "https://tea.xyz"
}