This a test repository for the unpac monorepo tool
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "SQLite3 bindings for OCaml"
4description: """
5sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API.
6Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL
7database engine with outstanding performance for many use cases."""
8maintainer: ["Markus Mottl <markus.mottl@gmail.com>"]
9authors: [
10 "Markus Mottl <markus.mottl@gmail.com>"
11 "Christian Szegedy <csdontspam@metamatix.com>"
12]
13license: "MIT"
14tags: ["clib:sqlite3" "clib:pthread"]
15homepage: "https://mmottl.github.io/sqlite3-ocaml"
16doc: "https://mmottl.github.io/sqlite3-ocaml/api"
17bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues"
18depends: [
19 "dune" {>= "2.7"}
20 "ocaml" {>= "4.12"}
21 "dune-compiledb"
22 "dune-configurator"
23 "conf-sqlite3" {build}
24 "ppx_inline_test" {with-test}
25 "odoc" {with-doc}
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git"