46916b33d5
Closes Homebrew/homebrew#14581. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
580 B
Ruby
22 lines
580 B
Ruby
require 'formula'
|
|
|
|
class Libcouchbase < Formula
|
|
homepage 'http://couchbase.com/develop/c/current'
|
|
url 'http://packages.couchbase.com/clients/c/libcouchbase-1.0.6.tar.gz'
|
|
sha1 '733479568b851382059b82bdd093b92081f9ac9c'
|
|
|
|
depends_on 'libevent'
|
|
depends_on 'libvbucket'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-couchbasemock"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/cbc-version"
|
|
end
|
|
end
|