diff options
| author | Ben Blackburne | 2010-03-26 16:31:17 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-11 12:14:57 -0700 |
| commit | f0072d9a1bc4f3fbc806b2db35258ef311ef5cef (patch) | |
| tree | 615e61717561bd654fdf9fca93bc031fd96f1dcb | |
| parent | 8f649b781d2f65241e6e3e4b9f45691901a8db87 (diff) | |
| download | homebrew-f0072d9a1bc4f3fbc806b2db35258ef311ef5cef.tar.bz2 | |
FSA: Fast Statistical Alignment
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| l--------- | Library/Aliases/fsa | 1 | ||||
| -rw-r--r-- | Library/Formula/fast-statistical-alignment.rb | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Library/Aliases/fsa b/Library/Aliases/fsa new file mode 120000 index 000000000..49ecb5b3b --- /dev/null +++ b/Library/Aliases/fsa @@ -0,0 +1 @@ +../Formula/fast-statistical-alignment.rb
\ No newline at end of file diff --git a/Library/Formula/fast-statistical-alignment.rb b/Library/Formula/fast-statistical-alignment.rb new file mode 100644 index 000000000..49989157f --- /dev/null +++ b/Library/Formula/fast-statistical-alignment.rb @@ -0,0 +1,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 |
