aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fastbit.rb
blob: cdc953dcfe5b36863a215ac164322c99a3501feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Fastbit < Formula
  homepage 'https://sdm.lbl.gov/fastbit/'
  url 'https://codeforge.lbl.gov/frs/download.php/409/fastbit-ibis1.3.8.tar.gz'
  sha1 '3e0feed7932d34be49ca41fdb689f55b0466a28a'

  conflicts_with 'salt', :because => 'both install `include/filter.h`'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end

  def test
    system "#{bin}/fastbit-config", "--version"
  end
end