this repo has no description
1opam-version: "2.0" 2synopsis: 3 "OCaml library to read and write configuration files in JSON syntax" 4maintainer: "zoggy@bat8.org" 5authors: "Zoggy <zoggy@bat8.org>" 6license: "GPL-3.0-only" 7tags: ["configuration" "options" "json"] 8homepage: "https://zoggy.frama.io/ocf/" 9doc: "https://zoggy.frama.io/ocf/doc.html" 10bug-reports: "https://framagit.org/zoggy/ocf/issues" 11depends: [ 12 "dune" {>= "2.9"} 13 "ocaml" {>= "4.12.0" & < "5.3.0"} 14 "yojson" {>= "1.7.0"} 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "--promote-install-files=false" 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31 ["dune" "install" "-p" name "--create-install-files" name] 32] 33dev-repo: "git+https://framagit.org/zoggy/ocf.git" 34url { 35 src: "https://framagit.org/zoggy/ocf/-/archive/0.8.0/ocf-0.8.0.tar.gz" 36 checksum: [ 37 "md5=bb91b5331d9ace68ccbd5be7f775a4fe" 38 "sha512=b9b1ce82ff370222b74429b28748c99b5b78c657e8c8b273d404ba9c17df2cd48274aad4d16b4748ecdbd1402cb8fad4136122cdf617b8ca1d6256a09efe2161" 39 ] 40}