CMUCL formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Joshua Peek 2010-04-09 00:11:23 -05:00 committed by Adam Vandenberg
parent aaae1dfa2c
commit 190b1e0dbc
1 changed files with 18 additions and 0 deletions

18
Formula/cmucl.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Cmucl <Formula
url 'http://common-lisp.net/project/cmucl/downloads/release/20a/cmucl-20a-x86-darwin.tar.bz2'
version '20a'
homepage 'http://www.cons.org/cmucl'
md5 '15712845405e0052e72af7cac0a5f3ae'
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