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 /unixodbc/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 'unixodbc/meta.yaml')
-rw-r--r-- | unixodbc/meta.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/unixodbc/meta.yaml b/unixodbc/meta.yaml new file mode 100644 index 0000000..c9e0cb2 --- /dev/null +++ b/unixodbc/meta.yaml @@ -0,0 +1,30 @@ +{% set name = 'unixodbc' %} +{% set badname = 'unixODBC' %} +{% set version = '2.3.4' %} +{% set number = '0' %} + +about: + home: http://www.unixodbc.org + license: GPL + summary: | + ODBC is an open specification for providing application developers with + a predictable API with which to access Data Sources + +build: + number: {{number}} + +package: + name: {{name}} + version: {{version}} + +requirements: + build: + - readline + - pkgconfig + + run: + - readline + +source: + fn: {{badname}}-{{version}}.tar.gz + url: http://www.unixodbc.org/{{badname}}-{{version}}.tar.gz |