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