a72fe42ec6
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>
17 lines
457 B
Ruby
17 lines
457 B
Ruby
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
|