22 lines
511 B
Text
22 lines
511 B
Text
|
opam-version: "2.0"
|
||
|
maintainer: "ygrek@autistici.org"
|
||
|
license: "BSD3"
|
||
|
homepage: "https://github.com/ermine/xml"
|
||
|
depends: [
|
||
|
"ocaml"
|
||
|
"ocamlfind" {build}
|
||
|
"ocamlbuild" {build}
|
||
|
]
|
||
|
flags: light-uninstall
|
||
|
build: [
|
||
|
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
|
||
|
["ocaml" "setup.ml" "-build"]
|
||
|
["ocaml" "setup.ml" "-test"] {with-test}
|
||
|
]
|
||
|
install: ["ocaml" "setup.ml" "-install"]
|
||
|
remove: ["ocamlfind" "remove" "erm_xml"]
|
||
|
url {
|
||
|
src: "git+https://github.com/hannesm/xml.git"
|
||
|
}
|
||
|
synopsis: "XML stream parser"
|