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"
9tags: [
10 "clib:ct"
11 "clib:sybdb"
12]
13build: [
14 ["./autogen.sh"]
15 [
16 "./configure"
17 "--prefix"
18 prefix
19 "--sbindir=%{lib}%/freetds/sbin"
20 "--libexecdir=%{lib}%/freetds/libexec"
21 "--sysconfdir=%{lib}%/freetds/etc"
22 "--sharedstatedir=%{lib}%/freetds/com"
23 "--localstatedir=%{lib}%/freetds/var"
24 "--libdir=%{lib}%/freetds/lib"
25 "--includedir=%{lib}%/freetds/include"
26 "--datarootdir=%{lib}%/freetds/share"
27 ]
28 [make]
29]
30remove: [["ocamlfind" "remove" "freetds"]]
31depends: ["ocaml" "ocamlfind"]
32install: [make "install"]
33depexts: [
34 ["autoconf" "automake" "freetds-devel"] {os-distribution = "centos"}
35 ["autoconf" "automake" "freetds-dev"] {os-family = "debian"}
36 ["autoconf" "automake" "freetds-devel"] {os-distribution = "fedora"}
37 ["autoconf" "automake" "freetds"]
38 {os = "macos" & os-distribution = "homebrew"}
39]
40synopsis: "Binding to the ct-lib component of the FreeTDS library."
41description: """
42It allows to access Sybase and Microsoft (or other TDS) database
43servers."""
44flags: light-uninstall
45url {
46 src:
47 "https://download.ocamlcore.org/ocaml-freetds/ocaml-freetds/0.4.2/freetds-0.4.2.tar.gz"
48 checksum: [
49 "sha256=1e37b9701509f82071905974cfc109737744d586d1534c4aeaa465fe41309472"
50 "md5=5cf5a36fa4002f4a07018143102a3ced"
51 ]
52}