forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Bindings for the JS Gamepad API | ||
|
||
Using this and js_of_ocaml, you can use gamepads with OCaml in your browser. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
opam-version: "1.2" | ||
maintainer: "Etienne Millon <[email protected]>" | ||
authors: "Etienne Millon <[email protected]>" | ||
homepage: "https://github.com/emillon/gamepad_of_ocaml" | ||
bug-reports: "https://github.com/emillon/gamepad_of_ocaml/issues" | ||
license: "BSD-2" | ||
dev-repo: "https://github.com/emillon/gamepad_of_ocaml.git" | ||
doc: "https://emillon.github.io/gamepad_of_ocaml/doc" | ||
build: [ | ||
[ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" ] | ||
] | ||
build-test: [ | ||
[ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true" ] | ||
[ "ocaml" "pkg/pkg.ml" "test" ] | ||
] | ||
depends: [ | ||
"ocamlbuild" {build} | ||
"ocamlfind" {build} | ||
"topkg" {build} | ||
"lwt" | ||
"lwt_ppx" | ||
"js_of_ocaml-lwt" {>= "3.0"} | ||
"js_of_ocaml-ocamlbuild" {build} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://github.com/emillon/gamepad_of_ocaml/releases/download/v0.2.0/gamepad-0.2.0.tbz" | ||
checksum: "48df2644612a86a24f84e54090c68dd7" |