require 'formula' class Arangodb < Formula homepage 'http://www.arangodb.com/' url 'https://www.arangodb.com/repositories/Source/ArangoDB-2.4.3.tar.gz' sha1 '5064f7f7045b9d34bd327d398d1bc30a16e97f67' head "https://github.com/arangodb/arangodb.git", :branch => 'unstable' bottle do sha1 "e15c42bdac98b7430d3d895b650437353cdb0659" => :yosemite sha1 "0b2a59822ae08af9ebd5dadde4037b2b342d0c92" => :mavericks sha1 "b43016b809802a6be2d26be8c61b8d574bc2d827" => :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