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:
parent
2b936463f1
commit
a72fe42ec6
1 changed files with 17 additions and 0 deletions
17
Formula/fastbit.rb
Normal file
17
Formula/fastbit.rb
Normal 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
|
Loading…
Reference in a new issue