homebrew-core/Formula/unixodbc.rb

15 lines
398 B
Ruby
Raw Normal View History

require 'formula'
2009-09-14 16:30:30 +00:00
class Unixodbc < Formula
2012-01-08 22:29:36 +00:00
url 'http://www.unixodbc.org/unixODBC-2.3.1.tar.gz'
homepage 'http://www.unixodbc.org/'
2012-01-08 22:29:36 +00:00
md5 '86788d4006620fa1f171c13d07fdcaab'
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