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
url 'http://www.unixodbc.org/unixODBC-2.3.0.tar.gz'
homepage 'http://www.unixodbc.org/'
md5 'f2ad22cbdffe836c58987ed2332c2e99'
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