aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/blast.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/blast.rb')
-rw-r--r--Library/Formula/blast.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/Library/Formula/blast.rb b/Library/Formula/blast.rb
deleted file mode 100644
index 99edc4c3f..000000000
--- a/Library/Formula/blast.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-require 'formula'
-
-class Blast < Formula
- homepage 'http://blast.ncbi.nlm.nih.gov/'
- url 'ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.27/ncbi-blast-2.2.27+-src.tar.gz'
- version '2.2.27'
- sha1 '51529c9fada67e890b994213d26f4177fa3d23d8'
-
- fails_with :llvm do
- build 5658
- cause <<-EOS.undent
- Compiler segfaults.
- EOS
- end
-
- option 'with-dll', "Create dynamic binaries instead of static"
-
- def install
- args = ["--prefix=#{prefix}"]
- args << "--with-dll" if build.include? 'with-dll'
-
- cd 'c++' do
- system "./configure", *args
- system "make"
- system "make install"
- end
- end
-
- def caveats; <<-EOS.undent
- Using the option '--with-dll' will create dynamic binaries instead of
- static. NCBI Blast static binaries are approximately 28-times larger
- than dynamic binaries.
-
- Static binaries should be used for speed if the executable requires
- fast startup time, such as if another program is frequently restarting
- the blast executables.
- EOS
- end
-end