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 "conf-sqlite3" {build} 23 "base" {build} 24 "stdio" {build} 25 "configurator" {build} 26 "jbuilder" {>= "1.0+beta10"} 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.3.1/sqlite3-4.3.1.tbz" 36 checksum: [ 37 "sha256=617bdd391cae9b2ff26b60e5313e8397fcd6934b57d88b3244eb23ec29054b70" 38 "md5=bfee49a3e1b2f986e5533f0b849569f7" 39 ] 40}