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

class Unixodbc < Formula
  homepage 'http://www.unixodbc.org/'
  url 'http://www.unixodbc.org/unixODBC-2.3.2.tar.gz'
  sha1 'f84520fd58143625b614fde551435178a558ee2e'

  conflicts_with 'virtuoso', :because => 'Both install `isql` binaries.'

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