mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
5679f9ada2
* new file: projects/jsonnet.org/package.yml * gcc? * use clang
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}}
|
|
|