this repo has no description
1opam-version: "2.0" 2maintainer: "Markus W. Weissmann <markus.weissmann@in.tum.de>" 3authors: [ "Markus W. Weissmann <markus.weissmann@in.tum.de>" ] 4license: "MIT" 5homepage: "https://github.com/mwweissmann/ocaml-i2c" 6doc: "http://github.com/mwweissmann/ocaml-i2c" 7dev-repo: "git+https://github.com/mwweissmann/ocaml-i2c.git" 8bug-reports: "https://github.com/mwweissmann/ocaml-i2c/issues" 9build: [ 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["ocaml" "setup.ml" "-doc"] {with-doc} 13] 14install: ["ocaml" "setup.ml" "-install"] 15remove: [ 16 ["ocamlfind" "remove" "i2c"] 17] 18depends: [ 19 "ocaml" 20 "result" 21 "base-unix" 22 "stdint" {>= "0.4.1" & <= "0.5.0"} 23 "ocamlfind" {>= "1.5"} 24 "ocamlbuild" {build} 25 "conf-linux-libc-dev" 26] 27available: [ os = "linux" ] 28synopsis: "i2c" 29description: """ 30The i2c library provides bindings to the Linux i2c bus interface: 31functions to open a bus-file-descriptor and read/write operations""" 32flags: light-uninstall 33url { 34 src: "https://github.com/mwweissmann/ocaml-i2c/archive/0.1.2.tar.gz" 35 checksum: [ 36 "sha256=3a26d0c28ead4cddaa3090e5425b5ca55379533b5c2b622ab30ccf5c8e28fd77" 37 "md5=569b8c952d0b2376797f346e869dffcd" 38 ] 39}