require 'formula' class Arangodb < Formula homepage 'http://www.arangodb.com/' url 'https://www.arangodb.com/repositories/Source/ArangoDB-2.4.2.tar.gz' sha1 '5e396cfcd0376cbcf2f7feac36270676f1b9e991' head "https://github.com/arangodb/arangodb.git", :branch => 'unstable' bottle do sha1 "098919cc828d2eff8e0e2dd9ac24ce677c9b8917" => :yosemite sha1 "9e9b69f4c2f8f7358219036311df258ff2d77ca2" => :mavericks sha1 "f8a23f2b83907c20fcb7e7fb689037da7dbbe23d" => :mountain_lion end depends_on 'go' => :build depends_on 'openssl' needs :cxx11 def install # clang on 10.8 will still try to build against libstdc++, # which fails because it doesn't have the C++0x features # arangodb requires. ENV.libcxx args = %W[ --disable-dependency-tracking --prefix=#{prefix} --disable-relative --enable-mruby --datadir=#{share} --localstatedir=#{var} ] args << "--program-suffix=unstable" if build.head? system "./configure", *args system "make install" (var/'arangodb').mkpath (var/'log/arangodb').mkpath end def post_install system "#{sbin}/arangod", "--upgrade", "--log.file", "-" end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/arangodb/sbin/arangod --log.file -" def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{opt_sbin}/arangod -c #{etc}/arangodb/arangod.conf RunAtLoad EOS end end