fastbit 1.3.5

FastBit is an open-source data processing library following the spirit
of NoSQL movement. It offers a set of searching functions supported by
compressed bitmap indexes.

Closes Homebrew/homebrew#16322.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
Don Spaulding 2012-11-30 08:04:01 -06:00 committed by Misty De Meo
parent 2b936463f1
commit a72fe42ec6

17
Formula/fastbit.rb Normal file
View file

@ -0,0 +1,17 @@
require 'formula'
class Fastbit < Formula
homepage 'https://sdm.lbl.gov/fastbit/'
url 'https://codeforge.lbl.gov/frs/download.php/401/fastbit-ibis1.3.5.tar.gz'
sha1 '3a01de4474b88cd042cafea41d73f3ecf87be747'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/fastbit-config", "--version"
end
end