This commit is contained in:
Jacob Heider 2023-03-30 02:00:57 -04:00 committed by Jacob Heider
parent 8b10c587d9
commit b381962059

View file

@ -0,0 +1,25 @@
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"
}