Skip to content

Commit

Permalink
+jsonnet.org (#5312)
Browse files Browse the repository at this point in the history
* new file:   projects/jsonnet.org/package.yml

* gcc?

* use clang
  • Loading branch information
and-ri authored Feb 22, 2024
1 parent 9a323ba commit 5679f9a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions projects/jsonnet.org/package.yml
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit 5679f9a

Please sign in to comment.