da3fdbd0cf
* And "mkdir" isntead of "Dir.mkdir" * And "Dir[]" instead of "Dir.glob" * Also style fixes and nitpicks
14 lines
361 B
Ruby
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
|