-
Notifications
You must be signed in to change notification settings - Fork 4
/
mindstorm.opam
34 lines (34 loc) · 1.1 KB
/
mindstorm.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "2.0"
maintainer: "Christophe Troestler <[email protected]>"
authors: [ "Christophe Troestler"
"Julie De Pril"
"Marc Ducobu"
"Dany Maslowski" ]
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/Chris00/ocaml-mindstorm"
dev-repo: "git+https://github.com/Chris00/ocaml-mindstorm.git"
bug-reports: "https://github.com/Chris00/ocaml-mindstorm/issues"
doc: "https://Chris00.github.io/ocaml-mindstorm/doc"
tags: [ "lego" "robotics" "mindstorms"
"clib:usb" "clib:bluetooth" ]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.04.1"}
"dune"
"dune-configurator" {>= "2.0"}
"cppo" {build & >= "1.3.0"}
"base-bytes"
"base-unix"
"conf-bluetooth" {os = "linux"}
]
synopsis: "Drive Lego Mindstorms bricks from OCaml"
description: """
This library allows you to communicate with your Lego Mindstorms brick
via bluetooth, enable the motors and retrieve data from various
sensors.
"""
available: os != "macos"