Skip to content

Instantly share code, notes, and snippets.

@liangqi
Created July 17, 2013 19:31
Show Gist options
  • Select an option

  • Save liangqi/6023683 to your computer and use it in GitHub Desktop.

Select an option

Save liangqi/6023683 to your computer and use it in GitHub Desktop.
require 'formula'
class Icecream < Formula
homepage 'https://github.com/icecc/icecream'
url 'http://ftp.suse.com/pub/projects/icecream/icecc-1.0.1.tar.bz2'
sha1 'b1edce8d2385aa0caf93f731e292463bde98e8b0'
def install
system "./configure", "--disable-dependency-tracking",
"--enable-clang-wrappers",
"--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