this repo has no description
1opam-version: "2.0" 2maintainer: "Ben Greenman" 3authors: "Ben Greenman" 4homepage: "http://github.com/bennn/assertions" 5bug-reports: "https://github.com/bennn/assertions/issues" 6dev-repo: "git+https://github.com/bennn/assertions.git" 7build: [ 8 ["ocaml" "setup.ml" "-configure"] 9 [make "all"] 10] 11install: [make "install"] 12remove: ["ocamlfind" "remove" "assertions"] 13depends: [ 14 "ocaml" {<"5.0"} 15 "ocamlfind" {build} 16 "ocamlbuild" {build} 17] 18synopsis: "Basic assert statements" 19description: """ 20Provides basic assert statements, like `assert_equal` and `assert_raises`. 21To be used independently or as a supplement to `ounit` or `pa_ounit.""" 22available: [os != "win32"] 23flags: light-uninstall 24url { 25 src: "https://github.com/bennn/assertions/archive/0.1.tar.gz" 26 checksum: [ 27 "sha256=630ec9bd94c65a2eece7be792b9d03853b147478276421898155cfb22068649b" 28 "md5=2021486112f018aafc818bce8c318a7a" 29 ] 30}