this repo has no description
1opam-version: "2.0"
2authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
3 "Kenn Knowles <kenn.knowles@gmail.com>" ]
4maintainer: "Christophe.Troestler@umons.ac.be"
5homepage: "https://github.com/kennknowles/ocaml-freetds"
6dev-repo: "git+https://github.com/kennknowles/ocaml-freetds.git"
7bug-reports: "https://github.com/kennknowles/ocaml-freetds/issues"
8license: "LGPL-2.1-only"
9build: [
10 ["./autogen.sh"]
11 [
12 "./configure"
13 "--prefix"
14 prefix
15 "--sbindir=%{lib}%/freetds/sbin"
16 "--libexecdir=%{lib}%/freetds/libexec"
17 "--sysconfdir=%{lib}%/freetds/etc"
18 "--sharedstatedir=%{lib}%/freetds/com"
19 "--localstatedir=%{lib}%/freetds/var"
20 "--libdir=%{lib}%/freetds/lib"
21 "--includedir=%{lib}%/freetds/include"
22 "--datarootdir=%{lib}%/freetds/share"
23 ]
24 [make]
25]
26remove: [["ocamlfind" "remove" "freetds"]]
27depends: ["ocaml" "ocamlfind"]
28install: [make "install"]
29depexts: [
30 ["autoconf" "automake" "freetds-devel"] {os-distribution = "centos"}
31 ["autoconf" "automake" "freetds-dev"] {os-family = "debian"}
32 ["autoconf" "automake" "freetds-devel"] {os-distribution = "fedora"}
33 ["autoconf" "automake" "freetds"]
34 {os = "macos" & os-distribution = "homebrew"}
35]
36synopsis: "Binding to the ct-lib component of the FreeTDS library."
37description: """
38It allows to access Sybase and Microsoft (or other TDS) database
39servers."""
40flags: light-uninstall
41url {
42 src:
43 "https://download.ocamlcore.org/ocaml-freetds/ocaml-freetds/0.4/freetds-0.4.tar.gz"
44 checksum: [
45 "sha256=e48c2a5207f0e7bbd7f6a8bff205524d38dbac7d3900b4d759013df9a3d9a43a"
46 "md5=3cd1b8eb818ddba36cc12d064863f309"
47 ]
48}