aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/unixodbc.rb
blob: 0eeb17ddeeaac52c9134666e436aeded76ab307b (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.1.tar.gz'
  homepage 'http://www.unixodbc.org/'
  sha1 '815cbc4f34e1a6d95daf3a5ab74e6ed3a586aad7'

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