Created
January 11, 2011 16:22
-
-
Save laserson/774656 to your computer and use it in GitHub Desktop.
exonerate homebrew formula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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