aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmucl.rb
blob: f16d6721430bc05e323395796dbb8c5fc9fb52ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Cmucl < Formula
  homepage 'http://www.cons.org/cmucl'
  url 'http://common-lisp.net/project/cmucl/downloads/release/20c/cmucl-20c-x86-darwin.tar.bz2'
  sha1 '80c2a026d69ff508ead31fce716d92aa8dd5f31d'

  skip_clean 'bin'

  def install
    bin.install 'bin/lisp'
    lib.install 'lib/cmucl'

    doc.install Dir['doc/cmucl/*']
    man1.install Dir['man/man1/*']
  end
end