29 lines
711 B
Plaintext
29 lines
711 B
Plaintext
version: "dev"
|
|
name: "tezos-storage"
|
|
opam-version: "2.0"
|
|
maintainer: "contact@tezos.com"
|
|
authors: [ "Tezos devteam" ]
|
|
homepage: "https://www.tezos.com/"
|
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
|
license: "MIT"
|
|
depends: [
|
|
"ocamlfind" { build }
|
|
"dune" { build & >= "1.0.1" }
|
|
"tezos-base"
|
|
"lmdb"
|
|
"irmin-lmdb"
|
|
"tezos-stdlib-unix" { with-test }
|
|
"alcotest-lwt" { with-test }
|
|
]
|
|
build: [
|
|
[ "dune" "build" "-p" name "-j" jobs ]
|
|
[ "mv" "vendors/tezos-modded/src/lib_storage/tezos-storage.install" "." ]
|
|
]
|
|
run-test: [
|
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
|
]
|
|
url {
|
|
src: "https://gitlab.com/ligolang/ligo/-/archive/master/ligo.tar.gz"
|
|
}
|