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.3/sqlite3-ocaml-4.0.3.tar.gz"
43 checksum: [
44 "sha256=390383088b07fde6f775d060e59551ea796334b23b480d9937ad6429cd615d30"
45 "md5=e09802160820271c5016170dc1f5405e"
46 ]
47}