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.3.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.1.tar.gz"
35 checksum: [
36 "sha256=acdf92a6b89121ab2d67334a4be682181bed4671830104558c0c520c086fea43"
37 "md5=00021a581cc0115c8137fd4d4938ef56"
38 ]
39}