summaryrefslogtreecommitdiff
path: root/unixodbc
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2016-11-14 15:43:53 -0500
committerGitHub <noreply@github.com>2016-11-14 15:43:53 -0500
commitbab5cee26bce4f2393fb51030f7be35c171ed44c (patch)
tree7d949268a70066602cd3ed6abca2ac97598beba5 /unixodbc
parentd47f07051f6d05af894b6799e1cee6c03b3351e9 (diff)
downloadastroconda-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')
-rw-r--r--unixodbc/build.sh11
-rw-r--r--unixodbc/meta.yaml30
2 files changed, 41 insertions, 0 deletions
diff --git a/unixodbc/build.sh b/unixodbc/build.sh
new file mode 100644
index 0000000..a83ac44
--- /dev/null
+++ b/unixodbc/build.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+./configure --prefix=$PREFIX \
+ --enable-threads \
+ --enable-readline \
+ --enable-ltdl-install \
+ --enable-drivers \
+ --enable-drivers-conf
+
+make -j${CPU_COUNT}
+make install
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