this repo has no description
1opam-version: "2.0" 2maintainer: "Andre Nathan <andrenth@gmail.com>" 3authors: "Andre Nathan <andrenth@gmail.com>" 4homepage: "https://github.com/andrenth/ocaml-mariadb" 5bug-reports: "https://github.com/andrenth/ocaml-mariadb/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/andrenth/ocaml-mariadb.git" 8synopsis: "OCaml bindings for MariaDB" 9description: "OCaml-MariaDB provides Ctypes-based bindings for MariaDB, including its nonblocking API." 10 11build: [ 12 ["./configure" "--prefix=%{prefix}%"] 13 [make] 14] 15install: [make "install"] 16depends: [ 17 "ocaml" {>= "4.07.0" & < "4.14.0"} 18 "ocamlfind" {build} 19 "ocamlbuild" {build} 20 "ctypes" {>= "0.7.0"} 21 "conf-mariadb" 22 "conf-gcc" 23] 24available: arch != "arm32" & arch != "x86_32" # https://github.com/andrenth/ocaml-mariadb/pull/37 25url { 26 src: "https://github.com/andrenth/ocaml-mariadb/archive/1.1.4.tar.gz" 27 checksum: [ 28 "md5=ffbce0267be1fa60df1f623eb72cb2a1" 29 "sha512=2ca1fd613abe060d21e95e265d7a1e2699a2b78918a940757fcf0925c0b6dabfeea655b17dfa12610f8a1d5fa475a69ba767cd4572391e21e34c95581407c37f" 30 ] 31}