a0759ae93a
Many formula were imported during the development of the dependency branch.
17 lines
393 B
Ruby
17 lines
393 B
Ruby
require 'brewkit'
|
|
|
|
class Couchdb <Formula
|
|
@url='http://apache.multihomed.net/couchdb/0.9.1/apache-couchdb-0.9.1.tar.gz'
|
|
@homepage='http://couchdb.apache.org/'
|
|
@md5='9583efae5adfb3f9043e970fef825561'
|
|
|
|
depends_on 'spidermonkey'
|
|
depends_on 'icu4c'
|
|
depends_on 'erlang'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|