Skip to content

Commit 3a6b6ce

Browse files
committed
opam: add opam files via oasis2opam
1 parent a888f04 commit 3a6b6ce

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

opam/descr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
OCaml bindings for D3.js

opam/findlib

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d3

opam/opam

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
opam-version: "1.2"
2+
name: "d3"
3+
version: "0.1.0"
4+
maintainer: "Spiros Eliopoulos <[email protected]>"
5+
authors: [ "Spiros Eliopoulos <[email protected]>" ]
6+
license: "BSD-3-clause"
7+
homepage: "https://github.com/seliopou/ocaml-d3"
8+
bug-reports: "https://github.com/seliopou/ocaml-d3/issues"
9+
build: [
10+
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
11+
["ocaml" "setup.ml" "-build"]
12+
]
13+
install: ["ocaml" "setup.ml" "-install"]
14+
remove: [
15+
["ocamlfind" "remove" "d3"]
16+
]
17+
build-test: [
18+
["ocaml" "setup.ml" "-configure" "--enable-tests"]
19+
["ocaml" "setup.ml" "-build"]
20+
["ocaml" "setup.ml" "-test"]
21+
]
22+
depends: [
23+
"js_of_ocaml"
24+
"ocamlfind" {build}
25+
]
26+
depopts: [
27+
"lwt" {build}
28+
]

0 commit comments

Comments
 (0)