236a2d9cf6
Closes Homebrew/homebrew#8504. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
18 lines
404 B
Ruby
18 lines
404 B
Ruby
require 'formula'
|
|
|
|
class Cmucl < Formula
|
|
url 'http://common-lisp.net/project/cmucl/downloads/release/20c/cmucl-20c-x86-darwin.tar.bz2'
|
|
version '20c'
|
|
homepage 'http://www.cons.org/cmucl'
|
|
md5 '98dc8fe17a7033fdd39fab35a2147ea9'
|
|
|
|
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
|