Skip to content

Instantly share code, notes, and snippets.

@laserson
Created January 11, 2011 16:22
Show Gist options
  • Select an option

  • Save laserson/774656 to your computer and use it in GitHub Desktop.

Select an option

Save laserson/774656 to your computer and use it in GitHub Desktop.
exonerate homebrew formula
require 'formula'
class Exonerate <Formula
url 'http://www.ebi.ac.uk/~guy/exonerate/exonerate-2.2.0.tar.gz'
homepage 'http://www.ebi.ac.uk/~guy/exonerate/'
md5 'ad3f7fc413376201c4631687b2e0ae89'
depends_on 'glib'
def install
ENV.j1
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment