Created
July 27, 2011 14:57
-
-
Save eyliu/1109530 to your computer and use it in GitHub Desktop.
Homebrew formula for libctl
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 Libctl < Formula | |
url 'http://ab-initio.mit.edu/libctl/libctl-3.1.tar.gz' | |
homepage 'http://ab-initio.mit.edu/wiki/index.php/Libctl' | |
md5 '173fdc658b652a4ddfb983efc849e760' | |
depends_on 'guile' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment