3cba937679
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
31 lines
622 B
Ruby
31 lines
622 B
Ruby
require 'formula'
|
|
|
|
class Clojure <Formula
|
|
url 'http://github.com/downloads/clojure/clojure/clojure-1.2.0.zip'
|
|
md5 'da0cc71378f56491d6ee70dee356831f'
|
|
head 'git://github.com/richhickey/clojure.git'
|
|
homepage 'http://clojure.org/'
|
|
|
|
def jar
|
|
'clojure.jar'
|
|
end
|
|
|
|
def script
|
|
<<-EOS
|
|
#!/bin/sh
|
|
# Runs clojure.
|
|
# With no arguments, runs Clojure's REPL.
|
|
|
|
# resolve links - $0 may be a softlink
|
|
CLOJURE=$CLASSPATH:$(brew --cellar)/#{name}/#{version}/#{jar}
|
|
|
|
java -cp $CLOJURE clojure.main "$@"
|
|
EOS
|
|
end
|
|
|
|
def install
|
|
system "ant" if ARGV.build_head?
|
|
prefix.install jar
|
|
(bin+'clj').write script
|
|
end
|
|
end
|