88779ade49
Closes Homebrew/homebrew#14653.
23 lines
693 B
Ruby
23 lines
693 B
Ruby
require 'formula'
|
|
|
|
class Hmmer < Formula
|
|
homepage 'http://hmmer.janelia.org/'
|
|
url 'http://selab.janelia.org/software/hmmer3/3.0/hmmer-3.0.tar.gz'
|
|
sha1 '77803c0bdb3ab07b7051a4c68c0564de31940c6d'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
|
|
# Install man pages manually as long as automatic man page install
|
|
# is deactivated in the HMMER makefile. If this changes in future
|
|
# versions of HMMER, these lines can be removed.
|
|
|
|
cd "documentation/man" do
|
|
# rename all *.man files to *.1 and install them into man1 section
|
|
Dir["*.man"].each do |f|
|
|
man1.install f => f.sub(/\.man/, ".1")
|
|
end
|
|
end
|
|
end
|
|
end
|