require 'formula' class Arangodb < Formula homepage 'http://www.arangodb.org/' url 'https://www.arangodb.org/repositories/Source/ArangoDB-2.2.0.tar.gz' sha1 '6c1886c606f73f9d3dfbc3d58293cc4f47a07491' head "https://github.com/triAGENS/ArangoDB.git", :branch => 'unstable' bottle do sha1 "2696710c1befec12be71b55ca5f70927fd4716b7" => :mavericks sha1 "52cf255b9115104cb01a133290621da7a161595e" => :mountain_lion sha1 "9dfaba919243e834b5f526de1b061c5e5a241252" => :lion end depends_on 'go' => :build needs :cxx11 def suffix if build.stable? return "" else return "-" + (build.devel? ? version : "unstable") end end 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 # Bundled V8 tries to build with a 10.5 deployment target, # which causes clang to error out b/c a 10.5 deployment target # and -stdlib=libc++ are not valid together. inreplace "3rdParty/V8/build/standalone.gypi", "'mac_deployment_target%': '10.5',", "'mac_deployment_target%': '#{MacOS.version}'," args = %W[ --disable-dependency-tracking --prefix=#{prefix} --disable-relative --enable-all-in-one-icu --enable-all-in-one-libev --enable-all-in-one-v8 --enable-mruby --datadir=#{share} --localstatedir=#{var} --program-suffix=#{suffix} ] 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