this repo has no description
1opam-version: "2.0" 2synopsis: "CSS parser and printer" 3description: """ 4OCaml-css is an OCaml library to parse and print CSS. It can also expand namespaces and perform computations on property values. 5 6Parsing uses [Angstrom](https://github.com/inhabitedtype/angstrom/) to dynamically choose the parser when encountering a property declaration. 7 8The parser can be extended by defining additional properties.""" 9maintainer: "zoggy@bat8.org" 10authors: "Zoggy <zoggy@bat8.org>" 11license: "GPL-3.0-only" 12homepage: "https://zoggy.frama.io/ocaml-css/" 13doc: "https://zoggy.frama.io/ocaml-css/doc.html" 14bug-reports: "https://framagit.org/zoggy/ocaml-css/issues" 15depends: [ 16 "dune" {>= "2.9"} 17 "ocaml" {>= "4.12.0"} 18 "angstrom" {>= "0.15.0"} 19 "fmt" {>= "0.9.0"} 20 "iri" {>= "0.6.0"} 21 "logs" {>= "0.7.0"} 22 "rdf" {>= "0.14.0"} 23 "alcotest" {with-test} 24 "lwt_ppx" {with-test} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "--promote-install-files=false" 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41 ["dune" "install" "-p" name "--create-install-files" name] 42] 43dev-repo: "git+https://framagit.org/zoggy/ocaml-css.git" 44url { 45 src: 46 "https://zoggy.frama.io/ocaml-css/releases/ocaml-css-0.1.0.tar.bz2" 47 checksum: [ 48 "md5=bc4bdcf47b37c7bd50bf9f31c391dcd2" 49 "sha512=8fa12c193638ba8c2d307f48e477cdac839ca25f865f7f350bc7675086c3c4a70bc1e5936d35d64aab9d8da2c9806005be70c59ac3d7f3c407a3861f6e0a7cf8" 50 ] 51}