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 ["jbuilder" "subst" "-p" name] {dev}
16 ["jbuilder" "build" "-p" name "-j" jobs]
17]
18
19depends: [
20 "ocaml" {>= "4.04"}
21 "conf-pkg-config" {build}
22 "base" {build}
23 "stdio" {build}
24 "configurator" {build}
25 "jbuilder" {>= "1.0+beta10"}
26 "conf-sqlite3" {build}
27]
28synopsis: "SQLite3 bindings for OCaml"
29description: """
30sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API.
31Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL
32database engine with outstanding performance for many use cases."""
33url {
34 src:
35 "https://github.com/mmottl/sqlite3-ocaml/releases/download/4.2.0/sqlite3-4.2.0.tbz"
36 checksum: [
37 "sha256=081759b58dc0c49030a78628070377c6c6b20858411ed495f44cf19003a95503"
38 "md5=f6fa60e9e6ff307480af88e5816daee7"
39 ]
40}