class Leiningen < Formula desc "Build tool for Clojure" homepage "https://github.com/technomancy/leiningen" url "https://github.com/technomancy/leiningen/archive/2.8.3.tar.gz" sha256 "adabd2f0412a507ef0dbbcf59e91f6aa0a8b0de0348b98d7b2c63a80a0a37024" head "https://github.com/technomancy/leiningen.git" bottle do cellar :any_skip_relocation sha256 "2248b5d6cad9b54f2bdfa23167e8f9d6c0ed064930829aaea06c1fe615954c4b" => :mojave sha256 "08ae28f8244f0cb009b07ff81a89a37a6ac097933790f65182172a83fe3b2310" => :high_sierra sha256 "08ae28f8244f0cb009b07ff81a89a37a6ac097933790f65182172a83fe3b2310" => :sierra end resource "jar" do url "https://github.com/technomancy/leiningen/releases/download/2.8.3/leiningen-2.8.3-standalone.zip", :using => :nounzip sha256 "7f0aafc93b1e32e49b7b15beaeefdbd6521dabb3cdbe541225e2524a503b6b1e" end def install jar = "leiningen-#{version}-standalone.jar" resource("jar").stage do libexec.install "leiningen-#{version}-standalone.zip" => jar end # bin/lein autoinstalls and autoupdates, which doesn't work too well for us inreplace "bin/lein-pkg" do |s| s.change_make_var! "LEIN_JAR", libexec/jar end bin.install "bin/lein-pkg" => "lein" bash_completion.install "bash_completion.bash" => "lein-completion.bash" zsh_completion.install "zsh_completion.zsh" => "_lein" end def caveats; <<~EOS Dependencies will be installed to: $HOME/.m2/repository To play around with Clojure run `lein repl` or `lein help`. EOS end test do (testpath/"project.clj").write <<~EOS (defproject brew-test "1.0" :dependencies [[org.clojure/clojure "1.5.1"]]) EOS (testpath/"src/brew_test/core.clj").write <<~EOS (ns brew-test.core) (defn adds-two "I add two to a number" [x] (+ x 2)) EOS (testpath/"test/brew_test/core_test.clj").write <<~EOS (ns brew-test.core-test (:require [clojure.test :refer :all] [brew-test.core :as t])) (deftest canary-test (testing "adds-two yields 4 for input of 2" (is (= 4 (t/adds-two 2))))) EOS system "#{bin}/lein", "test" end end