require "formula" class RRequirement < Requirement fatal true satisfy { which('r') } def message; <<-EOS.undent R not found. The R integration module requires R. Do one of the following: - install R -- run brew install homebrew/science/r or brew install Caskroom/cask/r - remove the --with-r option EOS end end class Monetdb < Formula desc "Column-store database" homepage "https://www.monetdb.org/" url "https://dev.monetdb.org/downloads/sources/Oct2014-SP3/MonetDB-11.19.11.zip" sha1 "eace3b154e43e5ab1b5c6e381b7688296cbd257e" bottle do sha256 "b67981d95bc9f86fe132284beded066ef2f13727e6daa0b814c660ed02f5195f" => :yosemite sha256 "2003c68af6ad2fb0c5a07bed030499ac7a8cc9237b5ccbbb10ab5e3fc6c0c610" => :mavericks sha256 "2ed04ccbd56d3e9c895f3b0e551fe97d6146f36157f432bc1b4a604df85f569c" => :mountain_lion end head do url "http://dev.monetdb.org/hg/MonetDB", :using => :hg depends_on "libtool" => :build depends_on "gettext" => :build depends_on "automake" => :build depends_on "autoconf" => :build end option "with-java", 'Build the JDBC dirver' option "with-r", 'Build the R integration module' depends_on RRequirement => :optional depends_on "pkg-config" => :build depends_on :ant => :build depends_on "libatomic_ops" => [:build, :recommended] depends_on "pcre" depends_on "readline" # Compilation fails with libedit. depends_on "openssl" depends_on "unixodbc" => :optional # Build the ODBC driver depends_on "geos" => :optional # Build the GEOM module depends_on "gsl" => :optional depends_on "cfitsio" => :optional depends_on "homebrew/php/libsphinxclient" => :optional def install ENV["M4DIRS"] = "#{Formula["gettext"].opt_share}/aclocal" if build.head? system "./bootstrap" if build.head? args = ["--prefix=#{prefix}", "--enable-debug=no", "--enable-assert=no", "--enable-optimize=yes", "--enable-testing=no", "--with-readline=#{Formula["readline"].opt_prefix}", # Use the correct readline "--without-rubygem"] # Installing the RubyGems requires root permissions args << "--with-java=no" if build.without? "java" args << "--disable-rintegration" if build.without? "r" system "./configure", *args system "make install" end end