homebrew-core/Formula/unixodbc.rb

15 lines
407 B
Ruby
Raw Normal View History

require 'formula'
2009-09-14 16:30:30 +00:00
class Unixodbc < Formula
homepage 'http://www.unixodbc.org/'
2013-01-27 23:42:43 +00:00
url 'http://www.unixodbc.org/unixODBC-2.3.1.tar.gz'
sha1 '815cbc4f34e1a6d95daf3a5ab74e6ed3a586aad7'
2009-09-14 16:30:30 +00:00
def install
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