aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/unixodbc.rb
blob: 7517dcac77867a4cf2ea13fbad583c00a0a96ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Unixodbc < Formula
  url 'http://www.unixodbc.org/unixODBC-2.3.0.tar.gz'
  homepage 'http://www.unixodbc.org/'
  md5 'f2ad22cbdffe836c58987ed2332c2e99'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-gui=no"
    system "make install"
  end
end