diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-11-14 15:43:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 15:43:53 -0500 |
commit | bab5cee26bce4f2393fb51030f7be35c171ed44c (patch) | |
tree | 7d949268a70066602cd3ed6abca2ac97598beba5 /freetds/meta.yaml | |
parent | d47f07051f6d05af894b6799e1cee6c03b3351e9 (diff) | |
download | astroconda-dev-bab5cee26bce4f2393fb51030f7be35c171ed44c.tar.gz |
Add freetds and unixODBC (#10)
* Initial commit of freetds
* Ensure linkage is 64-bit
* Add unixODBC
* Add unixodbc dependency; Remove Continuum kerberos
Diffstat (limited to 'freetds/meta.yaml')
-rw-r--r-- | freetds/meta.yaml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/freetds/meta.yaml b/freetds/meta.yaml new file mode 100644 index 0000000..56be856 --- /dev/null +++ b/freetds/meta.yaml @@ -0,0 +1,48 @@ +package: + name: freetds + version: 1.00.9 + +source: + url: ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.00.9.tar.bz2 + md5: 51e8941fbb537092e29c944e39c92f68 + patches: + - 0001-CMake-install-targets.patch + - 0002-CMake-install-headers.patch + +build: + features: + - vc9 [win and py27] + - vc10 [win and py34] + - vc14 [win and py35] + +requirements: + build: + - openssl 1.0.* + - readline [not win] + - unixodbc [not win] + - cmake [win] + - jom [win] + - vc 9 [win and py27] + - vc 10 [win and py34] + - vc 14 [win and py>34] + run: + - openssl 1.0.* + - readline [not win] + - unixodbc [not win] + - vc 9 [win and py27] + - vc 10 [win and py34] + - vc 14 [win and py>34] + +about: + home: http://www.freetds.org/index.html + license: GNU Library or Lesser General Public License (LGPL) + license_family: LGPL + summary: 'Natively talk to Microsoft SQL Server and Sybase databases' + description: | + FreeTDS is an open source implementation of the TDS (Tabular Data Stream) + protocol used by these databases for their own clients. It supports many + different flavors of the protocol and three APIs to access it. + Additionally FreeTDS works with other software such as Perl and PHP, + providing access from those languages as well. + doc_url: http://www.freetds.org/docs.html + dev_url: https://github.com/FreeTDS/freetds/ |