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" "clib:pthread" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] {os != "macos"} 13 ["env" "SQLITE3_OCAML_BREWCHECK=1" "ocaml" "setup.ml" "-build"] 14 {os = "macos"} 15 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 16 ["ocaml" "setup.ml" "-build"] {with-test} 17 ["ocaml" "setup.ml" "-test"] {with-test} 18 ["ocaml" "setup.ml" "-doc"] {with-doc} 19] 20install: ["ocaml" "setup.ml" "-install"] 21remove: [ 22 ["ocamlfind" "remove" "sqlite3"] 23] 24depends: [ 25 "ocaml" {>= "3.12" & < "5.0"} 26 "ocamlbuild" {build} 27 "ocamlfind" {build & >= "1.3.1"} 28 "conf-pkg-config" {build} 29 "conf-sqlite3" {build} 30] 31synopsis: "SQLite3 bindings" 32description: """ 33sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client 34API. Sqlite3 is a self-contained, serverless, zero-configuration, 35transactional SQL database engine with outstanding performance for 36many use cases. These bindings are written in a way that enables a 37friendly coexistence with the old (version 2) SQLite and its OCaml 38wrapper ocaml-sqlite.""" 39flags: light-uninstall 40url { 41 src: 42 "https://github.com/mmottl/sqlite3-ocaml/releases/download/v4.0.4/sqlite3-ocaml-4.0.4.tar.gz" 43 checksum: [ 44 "sha256=f8cfe8c597835c7c5e5f3fbf9e12b9ee882009c0fee956e102bb4a7190c0e3cf" 45 "md5=f7ad0fbd6ea157b4adb04b36b9d61f27" 46 ] 47}