aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPatrick Elder2009-09-14 11:30:30 -0500
committerMax Howell2009-09-29 23:32:51 +0100
commit82132bd2066552ea56f5cfe1dd82bfbce619b1e0 (patch)
treee8a92781da26f90ebb6e9460d330facbe0dec56a /Library/Formula
parent995fb7b4d35b8a44231229fbaf2b2d4a489b6b04 (diff)
downloadhomebrew-82132bd2066552ea56f5cfe1dd82bfbce619b1e0.tar.bz2
Added unixOBDC formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/unixodbc.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/unixodbc.rb b/Library/Formula/unixodbc.rb
new file mode 100644
index 000000000..43281b38f
--- /dev/null
+++ b/Library/Formula/unixodbc.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Unixodbc <Formula
+ @url='http://www.unixodbc.org/unixODBC-2.2.14.tar.gz'
+ @homepage='http://www.unixodbc.org/'
+ @md5='f47c2efb28618ecf5f33319140a7acd0'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-gui=no"
+ system "make install"
+ end
+end