forked from ocaml-community/ocaml-mariadb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmariadb.opam
29 lines (28 loc) · 854 Bytes
/
mariadb.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
opam-version: "2.0"
name: "mariadb"
maintainer: "Andre Nathan <[email protected]>"
authors: "Andre Nathan <[email protected]>"
homepage: "https://github.com/ocaml-community/ocaml-mariadb"
bug-reports: "https://github.com/ocaml-community/ocaml-mariadb/issues"
license: "MIT"
dev-repo: "git+https://github.com/ocaml-community/ocaml-mariadb.git"
synopsis: "OCaml bindings for MariaDB"
description: "OCaml-MariaDB provides Ctypes-based bindings for MariaDB, including its nonblocking API."
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs
"@install"
"@default" {with-test} # but not @runtest since it would require a MariaDB server
"@doc" {with-doc}
]
]
depends: [
"ocaml" {>= "4.07.0"}
"ctypes" {>= "0.7.0"}
"conf-mariadb"
"conf-gcc"
"dune"
"dune-configurator"
"async" {with-test}
"lwt" {with-test}
]