aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chibi-scheme.rb
blob: d1858fe2e8ad41a828d267baeaa7da7fb4a62806 (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'
  sha1 '3ebaa7cc8671a38deacd4873f4f800bbebdb341e'
  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