class Freetds < Formula desc "Libraries to talk to Microsoft SQL Server and Sybase databases" homepage "http://www.freetds.org/" url "ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.00.39.tar.bz2" sha256 "534f3fc5d2f3b397009a37e57b75e9c0baf70bab92a80b1cbaefde849fdfd3e9" bottle do sha256 "d23a90141e8b305a2e40f65a2dce3f79eaf083c42c9cfbcf4723b369db252178" => :sierra sha256 "f9c14f80cbf3a1114674fbbed892ddc0173408f16220e805fd97d4fe97e888f3" => :el_capitan sha256 "4fbe7aadc150f44ea86ec6ef8af3aa028729479bbce13ba8df3ec1b51f0f04e3" => :yosemite end head do url "https://github.com/FreeTDS/freetds.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "gettext" => :build depends_on "libtool" => :build end option "with-msdblib", "Enable Microsoft behavior in the DB-Library API where it diverges from Sybase's" option "with-sybase-compat", "Enable close compatibility with Sybase's ABI, at the expense of other features" option "with-odbc-wide", "Enable odbc wide, prevent unicode - MemoryError's" option "with-krb5", "Enable Kerberos support" deprecated_option "enable-msdblib" => "with-msdblib" deprecated_option "enable-sybase-compat" => "with-sybase-compat" deprecated_option "enable-odbc-wide" => "with-odbc-wide" deprecated_option "enable-krb" => "with-krb5" depends_on "pkg-config" => :build depends_on "unixodbc" => :optional depends_on "libiodbc" => :optional depends_on "openssl" => :recommended def install if build.with?("unixodbc") && build.with?("libiodbc") odie "freetds: --without-libiodbc must be specified when using --with-unixodbc" end args = %W[ --prefix=#{prefix} --with-tdsver=7.3 --mandir=#{man} ] if build.with? "openssl" args << "--with-openssl=#{Formula["openssl"].opt_prefix}" end if build.with? "unixodbc" args << "--with-unixodbc=#{Formula["unixodbc"].opt_prefix}" end if build.with? "libiodbc" args << "--with-libiodbc=#{Formula["libiodbc"].opt_prefix}" end # Translate formula's "--with" options to configuration script's "--enable" # options %w[msdblib sybase-compat odbc-wide krb5].each do |option| if build.with? option args << "--enable-#{option}" end end if build.head? system "./autogen.sh", *args else system "./configure", *args end system "make" ENV.deparallelize # Or fails to install on multi-core machines system "make", "install" end test do system "#{bin}/tsql", "-C" end end