Skip to content

Instantly share code, notes, and snippets.

@kawaguchi
Created August 2, 2010 08:59
Show Gist options
  • Save kawaguchi/504362 to your computer and use it in GitHub Desktop.
Save kawaguchi/504362 to your computer and use it in GitHub Desktop.
Gauche homebrew formula
require 'formula'
class Gauche <Formula
url 'http://prdownloads.sourceforge.net/gauche/Gauche-0.9.tgz'
homepage 'http://practical-scheme.net/gauche/'
md5 '1ab7e09da8436950989efd55b5dc270a'
def install
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