this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3authors: [
4 "Christian Lindig <lindig@eecs.harvard.edu>"
5 "Shawn Wagner <shawnw@speakeasy.org>"
6 "ygrek <ygrek@autistici.org>"
7]
8homepage: "https://ygrek.org/p/ocaml-mysql/"
9doc: "https://ygrek.org/p/ocaml-mysql/api/index.html"
10dev-repo: "git+https://github.com/ygrek/ocaml-mysql.git"
11bug-reports: "https://github.com/ygrek/ocaml-mysql/issues"
12build: [
13 ["./configure" "--prefix" "%{prefix}%"]
14 [make]
15 [make "htdoc"] {with-doc}
16]
17install: [make "install"]
18remove: [
19 ["ocamlfind" "remove" "mysql"]
20]
21depends: [
22 "ocaml"
23 "ocamlfind" {build}
24 "conf-mysql"
25]
26post-messages: [
27 "This package requires mysql client library installed. Due to abundance of mysql forks with different names and
28 opam not dealing very well with depext alternatives currently - they are not described as dependencies of this package.
29
30 Please ensure that mysql client library is installed and mysql_config binary is available in PATH.
31 Two most popular ways to achieve that are described in conf-mysql and conf-mariadb packages.
32
33 See also discussion in https://github.com/ocaml/opam-repository/pull/10312
34" {failure}
35]
36synopsis:
37 "Bindings to C client library for interacting with Mysql/MariaDB/Percona databases"
38flags: light-uninstall
39url {
40 src: "https://ygrek.org/p/release/ocaml-mysql/ocaml-mysql-1.2.2.tar.gz"
41 checksum: [
42 "sha256=fac7873c53ebe8d08c35701c77780d3fdae3b71d536238b6630932dd44e0987d"
43 "md5=8f1c38105e3d16e07920cc79d26a5027"
44 ]
45 mirrors:
46 "https://github.com/ygrek/ocaml-mysql/releases/download/v1.2.2/ocaml-mysql-1.2.2.tar.gz"
47}