2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-14 16:30:30 +00:00
|
|
|
|
2010-06-14 23:07:00 +00:00
|
|
|
class Unixodbc < Formula
|
2012-01-08 22:29:36 +00:00
|
|
|
url 'http://www.unixodbc.org/unixODBC-2.3.1.tar.gz'
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://www.unixodbc.org/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '815cbc4f34e1a6d95daf3a5ab74e6ed3a586aad7'
|
2009-09-14 16:30:30 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-gui=no"
|
2009-09-14 16:30:30 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|