homebrew-core/Formula/couchdb.rb
Lee Packham 182250ded7 Update to couchdb 1.0.1 and remove .ini file fix from brew
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-17 07:45:26 -07:00

29 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