aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chibi-scheme.rb
blob: 41c286a971259eb446eb1d18a47a16a516cac5f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class ChibiScheme < Formula
  homepage 'http://code.google.com/p/chibi-scheme/'
  url 'http://chibi-scheme.googlecode.com/files/chibi-scheme-0.5.3.tgz'
  md5 '26941ff819ee51056c700d94b7cb95c0'
  head 'https://code.google.com/p/chibi-scheme/', :using => :hg

  def install
    # "make" and "make install" must be done separately
    system "make"
    system "make", "install", "PREFIX=#{prefix}"
  end
end