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.23.tar.bz2" mirror "https://fossies.org/linux/privat/freetds-1.00.23.tar.bz2" sha256 "1be0cedc4ad026c28633c6587e84e35844dfa4e05e6779eae6d475572a64d36f" bottle do sha256 "6f9f35372aa13f2f9cb276fc1a35c264414394ceedad1a897998a0cb2e4f896e" => :sierra sha256 "9c9a1b8809c2fd3040e04278a5f3160b9cfc4a7666741265db7be68b98390995" => :el_capitan sha256 "99628b203d9055dbbed9e4906efe814b70fb23329b0af2f9dfdff1dcc59c346a" => :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 :universal 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 ENV.universal_binary if build.universal? 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