aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fast-statistical-alignment.rb
blob: 677e0eb056c41e2600523e87dbd50aa187af8ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class FastStatisticalAlignment < Formula
  url 'http://downloads.sourceforge.net/project/fsa/fsa-1.15.3.tar.gz'
  homepage 'http://fsa.sourceforge.net/'
  md5 '9c03a6b48c3a276f6233dc5715ed3d0a'

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