2012-01-11 10:43:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libcouchbase < Formula
|
|
|
|
homepage 'http://couchbase.com/develop/c/current'
|
2013-01-04 20:15:29 +00:00
|
|
|
url 'http://packages.couchbase.com/clients/c/libcouchbase-2.0.2.tar.gz'
|
|
|
|
sha1 'e1f6149d2fc05e3e8be568469baed5c7234c48f3'
|
2012-01-11 10:43:18 +00:00
|
|
|
|
2012-11-27 20:44:46 +00:00
|
|
|
option 'with-libev-plugin', 'Build libev IO plugin (will pull libev dependency)'
|
|
|
|
option 'without-libevent-plugin', 'Do not build libevent plugin (will remove libevent dependency)'
|
|
|
|
|
|
|
|
depends_on 'libev' if build.include?('with-libev-plugin')
|
|
|
|
depends_on 'libevent' unless build.include?('without-libevent-plugin')
|
2012-01-11 10:43:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2012-11-27 20:44:46 +00:00
|
|
|
"--disable-examples",
|
2012-01-11 10:43:18 +00:00
|
|
|
"--disable-couchbasemock"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/cbc-version"
|
|
|
|
end
|
|
|
|
end
|