ligo/src/proto_alpha/lib_protocol/tezos-protocol-alpha.opam

29 lines
825 B
Plaintext
Raw Normal View History

opam-version: "1.2"
version: "dev"
maintainer: "contact@tezos.com"
authors: [ "Tezos devteam" ]
homepage: "https://www.tezos.com/"
bug-reports: "https://gitlab.com/tezos/tezos/issues"
dev-repo: "https://gitlab.com/tezos/tezos.git"
2018-08-21 20:29:52 +04:00
license: "MIT"
depends: [
"ocamlfind" { build }
2018-07-23 17:40:55 +04:00
"dune" { build & = "1.0.1" }
"tezos-base"
"tezos-protocol-compiler"
"alcotest-lwt" { test }
"tezos-stdlib-unix" { test }
"tezos-protocol-environment" { test }
2018-06-13 02:10:18 +04:00
"tezos-shell-services" { test }
"bip39" { test }
]
build: [
2018-07-25 23:06:02 +04:00
[ "rm" "dune" "src/dune" ]
[ "cp" "%{tezos-protocol-compiler:share}%/jbuild_protocol_template" "dune" ]
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"alpha\"/" "dune" ]
2018-07-23 17:40:55 +04:00
[ "dune" "build" "-p" name "-j" jobs ]
]
build-test: [
2018-07-23 17:40:55 +04:00
[ "dune" "runtest" "-p" name "-j" jobs ]
]