-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatala-format.opam
39 lines (33 loc) · 980 Bytes
/
catala-format.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
opam-version: "2.0"
version: "0.2.0"
maintainer: "[email protected]"
authors: [ "Vincent Botbol" ]
homepage: "https://github.com/CatalaLang/catala-format"
bug-reports: "https://github.com/CatalaLang/catala-format"
dev-repo: "git+https://github.com/CatalaLang/catala-format.git"
license: "Apache-2.0"
depends: [
"ocaml"
"dune"
"cmdliner"
"lwt" {with-test}
"topiary" {= "0.5.1"}
]
build:[
"dune" "build"
"-p" name
"-j" jobs
"@catala-format"
]
install: [
[ "cp" "_build/default/src/main.exe" "%{bin}%/catala-format" ]
[ "mkdir" "-p" "%{topiary:share}%/queries" ]
[ "cp" "catala.scm" "%{topiary:share}%/queries/" ]
[ "mkdir" "-p" "%{topiary:share}%/configs" ]
[ "cp" "catala.ncl" "%{topiary:share}%/configs/" ]
]
synopsis: "A formatter for Catala based on the Topiary universal formatting engine"
description: """
A formatter for Catala based on the Topiary universal formatting engine.
Topiary repository: https://github.com/tweag/topiary
"""