this repo has no description
1opam-version: "2.0"
2maintainer: "Markus Mottl <markus.mottl@gmail.com>"
3authors: [
4 "Markus Mottl <markus.mottl@gmail.com>"
5 "Christian Szegedy <csdontspam@metamatix.com>"
6]
7license: "Expat"
8homepage: "http://mmottl.github.io/sqlite3-ocaml"
9doc: "https://mmottl.github.io/sqlite3-ocaml/api"
10dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git"
11bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues"
12tags: [ "clib:sqlite3" "clib:pthread" ]
13
14build: [
15 ["dune" "subst"] {dev}
16 ["dune" "build" "-p" name "-j" jobs]
17]
18
19depends: [
20 "ocaml" {>= "4.05"}
21 "dune" {>= "1.4.0"}
22 "dune-configurator"
23 "base" {build & < "v0.17"}
24 "stdio" {build}
25 "conf-sqlite3" {build}
26]
27
28synopsis: "SQLite3 bindings for OCaml"
29
30description: """
31sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API.
32Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL
33database engine with outstanding performance for many use cases."""
34url {
35 src:
36 "https://github.com/mmottl/sqlite3-ocaml/releases/download/4.4.1/sqlite3-4.4.1.tbz"
37 checksum: [
38 "sha256=db9b84db23c25812dad8b56117d6c9473ee1c43ee79bd434356b688fc03e472f"
39 "md5=93763885a3606252aa8004f7662dd161"
40 ]
41}