2009-11-22 04:08:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Leiningen < Formula
|
2013-03-02 09:18:43 +00:00
|
|
|
homepage 'https://github.com/technomancy/leiningen'
|
2013-10-10 22:02:45 +00:00
|
|
|
url 'https://github.com/technomancy/leiningen/archive/2.3.3.tar.gz'
|
|
|
|
sha1 'af420542bbe6496a810355efedba00c9ba827ab2'
|
2011-09-17 18:56:16 +00:00
|
|
|
|
2012-04-19 02:37:43 +00:00
|
|
|
head 'https://github.com/technomancy/leiningen.git'
|
2009-11-22 04:08:42 +00:00
|
|
|
|
2013-08-07 04:18:22 +00:00
|
|
|
resource 'jar' do
|
2013-10-10 22:02:45 +00:00
|
|
|
url 'https://leiningen.s3.amazonaws.com/downloads/leiningen-2.3.3-standalone.jar'
|
|
|
|
sha1 'bd14a59581eb0799200f3a6f30534d685c6ad095'
|
2013-08-07 04:18:22 +00:00
|
|
|
end
|
|
|
|
|
2009-11-22 04:08:42 +00:00
|
|
|
def install
|
2013-08-07 04:18:22 +00:00
|
|
|
libexec.install resource('jar')
|
|
|
|
|
2013-07-28 08:16:16 +00:00
|
|
|
# bin/lein autoinstalls and autoupdates, which doesn't work too well for us
|
|
|
|
inreplace "bin/lein-pkg" do |s|
|
2013-08-12 06:06:24 +00:00
|
|
|
s.change_make_var! 'LEIN_JAR', libexec/"leiningen-#{version}-standalone.jar"
|
2013-07-28 08:16:16 +00:00
|
|
|
end
|
2013-08-07 04:18:22 +00:00
|
|
|
|
2013-07-28 08:16:16 +00:00
|
|
|
bin.install "bin/lein-pkg" => 'lein'
|
2013-05-03 18:03:31 +00:00
|
|
|
bash_completion.install 'bash_completion.bash' => 'lein-completion.bash'
|
2013-05-30 18:58:41 +00:00
|
|
|
zsh_completion.install 'zsh_completion.zsh' => '_lein'
|
2009-11-22 04:08:42 +00:00
|
|
|
end
|
2010-07-18 22:11:41 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2013-07-28 08:16:16 +00:00
|
|
|
Dependencies will be installed to:
|
2010-07-18 22:11:41 +00:00
|
|
|
$HOME/.m2/repository
|
2013-08-17 11:28:25 +00:00
|
|
|
To play around with Clojure run `lein repl` or `lein help`.
|
2010-07-18 22:11:41 +00:00
|
|
|
EOS
|
|
|
|
end
|
2009-11-22 04:08:42 +00:00
|
|
|
end
|