88779ade49
Closes Homebrew/homebrew#14653.
17 lines
397 B
Ruby
17 lines
397 B
Ruby
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
|