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-socketcan" 6doc: "http://github.com/mwweissmann/ocaml-socketcan" 7dev-repo: "git+https://github.com/mwweissmann/ocaml-socketcan.git" 8bug-reports: "https://github.com/mwweissmann/ocaml-socketcan/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" "socketcan"] 17] 18depends: [ 19 "ocaml" 20 "result" 21 "base-unix" 22 "base-bytes" 23 "posix-time" {>= "1.0.0"} 24 "ocamlfind" {>= "1.5"} 25 "ocamlbuild" {build} 26 "conf-linux-libc-dev" 27] 28available: [ os = "linux" ] 29synopsis: "socketcan" 30description: """ 31The socketcan library provides bindings to the Linux SocketCAN interface: 32to CAN-bus-sockets, CAN-frames and CAN-identifiers""" 33flags: light-uninstall 34url { 35 src: "https://github.com/mwweissmann/ocaml-socketcan/archive/0.8.12.tar.gz" 36 checksum: [ 37 "sha256=fe7198c9939c226be87ccc9cd8c77b28426a9596efd54ef4940fbe48b4434160" 38 "md5=443c720fa472aa0d226bc9b0afdee9c0" 39 ] 40}