c0ee726fb2
Preprocessor is now a library installed by opam. Replaced ligolang@gmail.com by contact@ligolang.org in opam files. Reformatted some opam files. Removed #line directive from preprocessor. Added to the interface of ParserUnit. Script messages.sh now checks the identity of .msg and .msg.old to avoid undue warning about possibly different LR items.
35 lines
900 B
Plaintext
35 lines
900 B
Plaintext
name: "ligo"
|
|
opam-version: "2.0"
|
|
maintainer: "Galfour <contact@ligolang.org>"
|
|
authors: [ "Galfour" ]
|
|
homepage: "https://gitlab.com/ligolang/tezos"
|
|
bug-reports: "https://gitlab.com/ligolang/tezos/issues"
|
|
synopsis: "A high-level language which compiles to Michelson"
|
|
dev-repo: "git+https://gitlab.com/ligolang/tezos.git"
|
|
license: "MIT"
|
|
depends: [
|
|
"ocamlfind" { build }
|
|
"dune" { build & = "1.11.4" }
|
|
"menhir" { = "20190626" }
|
|
"bisect_ppx" {dev & >= "2.0.0"}
|
|
"ppx_let"
|
|
"ppx_deriving"
|
|
"ppx_expect"
|
|
"ppx_blob"
|
|
"tezos-utils"
|
|
"proto-alpha-utils"
|
|
"yojson"
|
|
"alcotest" { with-test }
|
|
"getopt"
|
|
"terminal_size"
|
|
"pprint"
|
|
# work around upstream in-place update
|
|
"ocaml-migrate-parsetree" { = "1.4.0" }
|
|
]
|
|
pin-depends: [
|
|
["bisect_ppx.git" "git+https://github.com/aantron/bisect_ppx.git#02dfb10188033a26d07d23480c2bc44a3a670357"]
|
|
]
|
|
build: [
|
|
[ "dune" "build" "-p" name "-j" jobs ]
|
|
]
|