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