this repo has no description
1opam-version: "2.0" 2maintainer: "rudi.grinberg@gmail.com" 3authors: [ 4 "Tikhon Jelvis" 5 "Rudi Grinberg" 6] 7homepage: "https://github.com/rgrinberg/ocaml-semver" 8bug-reports: "https://github.com/rgrinberg/ocaml-semver/issues" 9license: "BSD-3-Clause" 10dev-repo: "git+https://github.com/rgrinberg/ocaml-semver.git" 11build: [ 12 ["ocaml" "setup.ml" "-configure"] 13 ["ocaml" "setup.ml" "-build"] 14 ["ocaml" "setup.ml" "-doc"] {with-doc} 15] 16install: ["ocaml" "setup.ml" "-install"] 17remove: ["ocamlfind" "remove" "semver"] 18depends: [ 19 "ocaml" {>= "4.02.0" & < "5.0.0"} 20 "ocamlfind" {build} 21 "ocamlbuild" {build} 22] 23synopsis: "Semantic versioning module" 24description: """ 25Provides a single module `Semver` that can parse, compare, and manipulate 26software versions of the form x.x.x. See http://semver.org/""" 27flags: light-uninstall 28url { 29 src: "https://github.com/rgrinberg/ocaml-semver/archive/v0.1.0.tar.gz" 30 checksum: [ 31 "sha256=67e64b91c4e6a80afdae428ae65ecae544661e07a692410d4eca1334043a887c" 32 "md5=ce6614ba2f91754028b29a12989f9da6" 33 ] 34}