+jsonnet.org (#5312)

* new file:   projects/jsonnet.org/package.yml

* gcc?

* use clang
This commit is contained in:
Andrew 2024-02-23 00:55:51 +02:00 committed by GitHub
parent 9a323ba993
commit 5679f9ada2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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