this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis: 4 "The opam-bin tool is a simple framework to use `opam` with binary packages" 5description: """ 6opam-binary is a simple framework to use `opam` with binary packages. 7""" 8authors: ["Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"] 9maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"] 10homepage: "https://ocamlpro.github.io/opam-bin" 11doc: "https://ocamlpro.github.io/opam-bin/." 12bug-reports: "https://github.com/ocamlpro/opam-bin/issues" 13dev-repo: "git+https://github.com/ocamlpro/opam-bin.git" 14tags: "org:ocamlpro" 15build: [ 16 ["dune" "subst"] {dev} 17 ["sh" "-c" "./scripts/before.sh build '%{name}%'"] 18 [ 19 "dune" 20 "build" 21 "-p" 22 name 23 "-j" 24 jobs 25 "@install" 26 "@runtest" {with-test} 27 "@doc" {with-doc} 28 ] 29 ["sh" "-c" "./scripts/after.sh build '%{name}%'"] 30] 31install: [ 32 ["sh" "-c" "./scripts/before.sh install '%{name}%'"] 33] 34depends: [ 35 "ocaml" {>= "4.07.0"} 36 "dune" {>= "2.6.0"} 37 "re" {> "1.0"} 38 "ezjsonm" {>= "1.0.0" & < "2.0.0"} 39 "ez_opam_file" {>= "0.1.0" & < "1.0.0"} 40 "ez_file" {>= "0.2.0" & < "0.3.0"} 41 "ez_config" {>= "0.1.0" & < "1.0.0"} 42 "ez_cmdliner" {>= "0.1.0" & < "1.0.0"} 43 "ppx_inline_test" {with-test} 44 "ppx_expect" {with-test} 45 "odoc" {with-doc} 46 "ocamlformat" {with-test} 47] 48 49url { 50 src: "https://github.com/ocamlpro/opam-bin/archive/v1.1.0.tar.gz" 51 checksum: [ "sha256=55ebfb95074b67aec5907bcce4fef239777ec48ec4e4e23eb804bbac66aff32b" ] 52}