this repo has no description
1opam-version: "2.0" 2maintainer: "Markus Mottl <markus.mottl@gmail.com>" 3authors: [ "Markus Mottl <markus.mottl@gmail.com>" 4 "Christian Szegedy <csdontspam@metamatix.com>" ] 5license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 6homepage: "http://mmottl.github.io/sqlite3-ocaml" 7dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git" 8bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues" 9tags: [ "clib:sqlite3" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-doc"] {with-doc} 14] 15install: ["ocaml" "setup.ml" "-install"] 16remove: [ 17 ["ocamlfind" "remove" "sqlite3"] 18] 19depends: [ 20 "ocaml" {>= "3.12" & < "5.0"} 21 "ocamlfind" {build & >= "1.3.1"} 22 "ocamlbuild" {build & != "0.9.0"} 23 "conf-pkg-config" {build} 24 "conf-sqlite3" {build} 25] 26synopsis: "SQLite3 bindings" 27description: """ 28sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client 29API. Sqlite3 is a self-contained, serverless, zero-configuration, 30transactional SQL database engine with outstanding performance for 31many use cases. These bindings are written in a way that enables a 32friendly coexistence with the old (version 2) SQLite and its OCaml 33wrapper ocaml-sqlite.""" 34flags: light-uninstall 35url { 36 src: 37 "https://github.com/mmottl/sqlite3-ocaml/releases/download/v3.0.0/sqlite3-ocaml-3.0.0.tar.gz" 38 checksum: [ 39 "sha256=ebd6af981fc162a21b64861ccd53309478bad507144fb2ce9278b4b1989e2c17" 40 "md5=0fed3baca55221e9b3711e7da45eed7a" 41 ] 42}