-
Notifications
You must be signed in to change notification settings - Fork 6
/
freetds.opam
46 lines (44 loc) · 1.53 KB
/
freetds.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
opam-version: "2.0"
authors: [ "Christophe Troestler <[email protected]>"
"Kenn Knowles <[email protected]>" ]
maintainer: "[email protected]"
homepage: "https://github.com/kennknowles/ocaml-freetds"
dev-repo: "git+https://github.com/kennknowles/ocaml-freetds.git"
bug-reports: "https://github.com/kennknowles/ocaml-freetds/issues"
doc: "https://kennknowles.github.io/ocaml-freetds/doc"
license: "LGPL-2.1"
tags: [
"clib:ct"
"clib:sybdb"
]
build: [
["dune" "subst"]{pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" {>= "1.4.0"}
"dune-configurator"
"cppo" {build}
"ounit" {with-test & >= "2.0.0"}
"ocaml" {>= "4.06.0"}
]
depexts: [
["freetds-dev"] {os-distribution = "alpine"}
["epel-release" "freetds-devel"] {os-distribution = "centos"}
["freetds-dev"] {os-distribution = "debian"}
["freetds-dev"] {os-distribution = "ubuntu"}
["freetds-dev"] {os-distribution = "alpine"}
["freetds-devel"] {os-distribution = "fedora"}
["freetds-devel"] {os-distribution = "rhel"}
["libfreetds-devel"] {os-distribution = "mageia"}
["freetds-devel"] {os-family = "suse"}
["freetds-devel"] {os = "freebsd"}
["freetds"] {os = "macos" & os-distribution = "homebrew"}
["freetds"] {os = "win32" & os-distribution = "cygwinports"}
]
synopsis: "Binding to the FreeTDS library"
description: """
FreeTDS is a set of libraries for Unix and Linux that allows your
programs to natively talk to Microsoft SQL Server and Sybase
databases."""