c688d44351
Closes Homebrew/homebrew#28287. Signed-off-by: Brett Koonce <koonce@gmail.com>
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Libcouchbase < Formula
|
|
homepage 'http://couchbase.com/communities/c'
|
|
url 'http://packages.couchbase.com/clients/c/libcouchbase-2.3.0.tar.gz'
|
|
sha1 'dbb97594582e5a9240fa8090bb756990f2d1b550'
|
|
|
|
option :universal
|
|
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.with?('libev-plugin')
|
|
depends_on 'libevent' if build.with?('libevent-plugin')
|
|
|
|
def install
|
|
args = [
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-examples",
|
|
"--disable-tests", # don't download google-test framework
|
|
"--disable-couchbasemock"
|
|
]
|
|
if build.universal?
|
|
args << "--enable-fat-binary"
|
|
ENV.universal_binary
|
|
end
|
|
if build.without?('libev-plugin') && build.without?("libevent-plugin")
|
|
# do not do plugin autodiscovery
|
|
args << "--disable-plugins"
|
|
end
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/cbc", "version"
|
|
end
|
|
end
|