homebrew-core/Formula/primer3.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

14 lines
361 B
Ruby

require 'formula'
class Primer3 < Formula
homepage 'http://primer3.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/primer3/primer3/2.2.3/primer3-2.2.3.tar.gz'
md5 'b9cdcff68637479c094844d652c03839'
def install
cd "src" do
system "make all"
bin.install %w(primer3_core ntdpal oligotm long_seq_tm_test)
end
end
end