diff options
| author | Joshua Peek | 2010-04-09 00:11:23 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-09 10:06:59 -0700 |
| commit | 08c981ef8a7b377c5b695a91b20138ff795adf51 (patch) | |
| tree | 2a278643cba62cbeb5d73077cf86175a55f0aa15 /Library | |
| parent | 7ebf57bce88f8228d4258cbd84bb0634951c51c6 (diff) | |
| download | homebrew-08c981ef8a7b377c5b695a91b20138ff795adf51.tar.bz2 | |
CMUCL formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cmucl.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/cmucl.rb b/Library/Formula/cmucl.rb new file mode 100644 index 000000000..06c8ef0a4 --- /dev/null +++ b/Library/Formula/cmucl.rb @@ -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 |
