Skip to content

Instantly share code, notes, and snippets.

@uasi
Forked from VoQn/gauche.rb
Created March 8, 2011 10:09
Show Gist options
  • Save uasi/860112 to your computer and use it in GitHub Desktop.
Save uasi/860112 to your computer and use it in GitHub Desktop.
require 'formula'
class Gauche < Formula
url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.1.tgz'
homepage 'http://practical-scheme.net/gauche/'
md5 '6134e9c16aef2bc9fd3fa7e8fbebdd10'
def install
system "./configure",
"--disable-debug",
"--disable-dependency-tracking",
"--enable-multibyte=utf-8",
"--prefix=#{prefix}"
system "make"
system "make check"
system "make install"
end
end
@uasi
Copy link
Author

uasi commented Mar 8, 2011

Made several fixes to pass audit.

@VoQn
Copy link

VoQn commented Mar 8, 2011

Nice!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment