mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 04:25:08 +03:00
37 lines
748 B
YAML
37 lines
748 B
YAML
|
distributable:
|
||
|
url: https://github.com/google/jsonnet/archive/v{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: google/jsonnet
|
||
|
|
||
|
build:
|
||
|
script:
|
||
|
- make --jobs={{hw.concurrency}}
|
||
|
- install -D jsonnet {{prefix}}/bin/jsonnet
|
||
|
- install -D jsonnetfmt {{prefix}}/bin/jsonnetfmt
|
||
|
env:
|
||
|
linux:
|
||
|
CC: clang
|
||
|
CXX: clang++
|
||
|
LD: clang
|
||
|
|
||
|
provides:
|
||
|
- bin/jsonnet
|
||
|
- bin/jsonnetfmt
|
||
|
|
||
|
test:
|
||
|
- run: jsonnet $FIXTURE | grep 'Hello Alice!'
|
||
|
fixture:
|
||
|
content: |
|
||
|
{
|
||
|
person1: {
|
||
|
name: "Alice",
|
||
|
welcome: "Hello " + self.name + "!",
|
||
|
},
|
||
|
person2: self.person1 { name: "Bob" },
|
||
|
}
|
||
|
extname: jsonnet
|
||
|
- jsonnetfmt --version | grep {{version}}
|
||
|
|