require 'formula' class Arangodb < Formula homepage 'http://www.arangodb.com/' url 'https://www.arangodb.com/repositories/Source/ArangoDB-2.4.4.tar.gz' sha1 '013fecc546bd35e925e550817a81de7f3fb3da93' head "https://github.com/arangodb/arangodb.git", :branch => 'unstable' bottle do sha1 "59ecb4430461a905f2c0398e159a2d7b8f025b0d" => :yosemite sha1 "938553f79b9e28fb98cff1e3ec4c83ad9ed51268" => :mavericks sha1 "c8708807733fa6c404dba17e28323a665255318d" => :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