blob: 09d8b4108feb2d08d205965e9f91e61d83d9b70f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|