this repo has no description
1opam-version: "2.0" 2synopsis: 3 "OCaml library to read and write configuration files in JSON syntax" 4maintainer: "Zoggy <zoggy@bat8.org>" 5authors: "Zoggy <zoggy@bat8.org>" 6license: "LGPL-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 "ocaml" {>= "4.12.0" & < "5.0.0"} 13 "ocamlfind" {build} 14 "yojson" {>= "1.7.0"} 15 "ppx_tools" {>= "6.3"} 16] 17build: [ 18 ["./configure" "--prefix" prefix] 19 [make "all"] 20] 21install: [make "install"] 22dev-repo: "git+https://framagit.org/zoggy/ocf.git" 23url { 24 src: "https://framagit.org/zoggy/ocf/-/archive/0.7.0/ocf-0.7.0.tar.gz" 25 checksum: [ 26 "md5=14ad78d1710360954cf75fa5a6aba5d4" 27 "sha512=fbe8a05e30a83446c065538819ce834989a3945be9bc838741ba38346a1d27296d65691b9cb8b1f8a897885e236eb80ada0d9d0c78908a31c3d1160b3962908c" 28 ] 29}