46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Libcouchbase < Formula
|
|
homepage 'http://couchbase.com/communities/c'
|
|
url 'http://packages.couchbase.com/clients/c/libcouchbase-2.4.1.tar.gz'
|
|
sha1 '08de7dc4199549857abe3443f3680f203ca6e0b5'
|
|
|
|
bottle do
|
|
sha1 "404761e3088259cd6819c4a39b8777241042800e" => :mavericks
|
|
sha1 "3bb41c024108b989d6cc57e42a42de8db643c70d" => :mountain_lion
|
|
sha1 "9bc84fc8a8db04ae3b59061107faacd53bd05282" => :lion
|
|
end
|
|
|
|
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')
|
|
depends_on 'openssl'
|
|
|
|
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
|