this repo has no description
1opam-version: "2.0" 2authors: "Francois Berenger" 3maintainer: "unixjunkie@sdf.org" 4homepage: "https://github.com/UnixJunkie/vector3" 5dev-repo: "git+https://github.com/HappyCrow/vector3" 6bug-reports: "https://github.com/UnixJunkie/vector3/issues" 7build: [ 8 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 9 ["ocaml" "setup.ml" "-build"] 10] 11install: [ 12 ["ocaml" "setup.ml" "-install"] 13] 14remove: [ 15 ["ocamlfind" "remove" "vector3"] 16] 17depends: [ 18 "ocaml" {< "5.0"} 19 "ocamlfind" 20 "ocamlbuild" {build} 21] 22synopsis: 23 "module for 3D vectors (implemented as records of x, y and z floats)" 24flags: light-uninstall 25url { 26 src: "https://github.com/HappyCrow/vector3/archive/v0.2.1.tar.gz" 27 checksum: [ 28 "sha256=f9e24bcbe4ba1e97a248d959b02f4258385ebb7550837a8a57c4576fa3c820be" 29 "md5=085a00fcff83e4bae7078da512024299" 30 ] 31}