Skip to content

Instantly share code, notes, and snippets.

@eyliu
Created July 27, 2011 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyliu/1109530 to your computer and use it in GitHub Desktop.
Save eyliu/1109530 to your computer and use it in GitHub Desktop.
Homebrew formula for libctl
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