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.5/freetds-0.5.tar.gz" 48 checksum: [ 49 "sha256=3d20c44e39c71371a48bdaab9c4b7917307d9bba31cd0e988ebb4b6ea2286255" 50 "md5=df5063d112f561b875f7832435a50e75" 51 ] 52}