diff options
| author | Adam Vandenberg | 2012-02-20 22:04:21 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-24 21:35:50 -0800 |
| commit | d3f35542992c4978525b1eaaa0255c92f1e830e0 (patch) | |
| tree | 499df60efe14b16e641247313cdd07416af1290a /Library/Formula/blast.rb | |
| parent | 9c77e1cefce38f2a3001ce398ad0b4dc2f668243 (diff) | |
| download | homebrew-d3f35542992c4978525b1eaaa0255c92f1e830e0.tar.bz2 | |
Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
Diffstat (limited to 'Library/Formula/blast.rb')
| -rw-r--r-- | Library/Formula/blast.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/blast.rb b/Library/Formula/blast.rb index 2e0b844d1..ef5f40e6c 100644 --- a/Library/Formula/blast.rb +++ b/Library/Formula/blast.rb @@ -1,14 +1,14 @@ require 'formula' class Blast < Formula - url 'ftp://ftp.ncbi.nih.gov/blast/executables/blast+/2.2.25/ncbi-blast-2.2.25+-src.tar.gz' homepage 'http://blast.ncbi.nlm.nih.gov/' - md5 '01256b808e3af49a5087945b6a8c8293' + url 'ftp://ftp.ncbi.nih.gov/blast/executables/blast+/2.2.25/ncbi-blast-2.2.25+-src.tar.gz' version '2.2.25' + md5 '01256b808e3af49a5087945b6a8c8293' def install - Dir.chdir 'c++' do - system "./configure --prefix=#{prefix}" + cd 'c++' do + system "./configure", "--prefix=#{prefix}" system "make" system "make install" end |
