Skip to content

Commit 0f96a33

Browse files
authored
Merge pull request ocaml#23572 from zoggy/opam-publish-css.0.1.0
Package css.0.1.0
2 parents deac704 + c5da891 commit 0f96a33

File tree

1 file changed

+51
-0
lines changed
  • packages/css/css.0.1.0

1 file changed

+51
-0
lines changed

packages/css/css.0.1.0/opam

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
opam-version: "2.0"
2+
synopsis: "CSS parser and printer"
3+
description: """
4+
OCaml-css is an OCaml library to parse and print CSS. It can also expand namespaces and perform computations on property values.
5+
6+
Parsing uses [Angstrom](https://github.com/inhabitedtype/angstrom/) to dynamically choose the parser when encountering a property declaration.
7+
8+
The parser can be extended by defining additional properties."""
9+
maintainer: "[email protected]"
10+
authors: "Zoggy <[email protected]>"
11+
license: "GPL-3.0-only"
12+
homepage: "https://zoggy.frama.io/ocaml-css/"
13+
doc: "https://zoggy.frama.io/ocaml-css/doc.html"
14+
bug-reports: "https://framagit.org/zoggy/ocaml-css/issues"
15+
depends: [
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+
]
27+
build: [
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+
]
43+
dev-repo: "git+https://framagit.org/zoggy/ocaml-css.git"
44+
url {
45+
src:
46+
"https://framagit.org/zoggy/ocaml-css/-/archive/0.1.0/ocaml-css-0.1.0.tar.bz2"
47+
checksum: [
48+
"md5=bc4bdcf47b37c7bd50bf9f31c391dcd2"
49+
"sha512=8fa12c193638ba8c2d307f48e477cdac839ca25f865f7f350bc7675086c3c4a70bc1e5936d35d64aab9d8da2c9806005be70c59ac3d7f3c407a3861f6e0a7cf8"
50+
]
51+
}

0 commit comments

Comments
 (0)