diff options
| author | Don Spaulding | 2012-11-30 08:04:01 -0600 |
|---|---|---|
| committer | Misty De Meo | 2013-01-15 20:07:41 -0600 |
| commit | 24998b128f4c1654deadfe75325060ebc35ecb13 (patch) | |
| tree | 9bb93d1f1071b20486638405c3bad40a45a2a422 /Library/Formula | |
| parent | c9f3be3e3d9911d5e6eebc941a92960f7bc05197 (diff) | |
| download | homebrew-24998b128f4c1654deadfe75325060ebc35ecb13.tar.bz2 | |
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 #16322.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fastbit.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/fastbit.rb b/Library/Formula/fastbit.rb new file mode 100644 index 000000000..2994c5f13 --- /dev/null +++ b/Library/Formula/fastbit.rb @@ -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 |
