homebrew-core/Formula/couchdb.rb

30 lines
848 B
Ruby

require 'formula'
class Couchdb <Formula
url 'git://github.com/apache/couchdb.git', :tag => "origin/tags/1.0.1"
homepage "http://couchdb.apache.org/"
version "1.0.1"
depends_on 'spidermonkey'
depends_on 'icu4c'
depends_on 'erlang'
def install
system "./bootstrap" if File.exists? "bootstrap"
system "./configure", "--prefix=#{prefix}",
"--localstatedir=#{var}",
"--sysconfdir=#{etc}",
"--with-erlang=#{HOMEBREW_PREFIX}/lib/erlang/usr/include",
"--with-js-include=#{HOMEBREW_PREFIX}/include",
"--with-js-lib=#{HOMEBREW_PREFIX}/lib"
system "make"
system "make install"
(lib+'couchdb/bin/couchjs').chmod 0755
(var+'lib/couchdb').mkpath
(var+'log/couchdb').mkpath
end
end