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

class Unixodbc < Formula
  homepage 'http://www.unixodbc.org/'
  url 'http://www.unixodbc.org/unixODBC-2.3.1.tar.gz'
  sha1 '815cbc4f34e1a6d95daf3a5ab74e6ed3a586aad7'

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