planck 2.12.0
depend on clojure at build time instead of leiningen remove requirement to use Java 8 specifically Closes #25756. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
parent
31c8525756
commit
5ea829e55d
1 changed files with 3 additions and 8 deletions
|
@ -1,9 +1,8 @@
|
||||||
class Planck < Formula
|
class Planck < Formula
|
||||||
desc "Stand-alone ClojureScript REPL"
|
desc "Stand-alone ClojureScript REPL"
|
||||||
homepage "http://planck-repl.org/"
|
homepage "http://planck-repl.org/"
|
||||||
url "https://github.com/mfikes/planck/archive/2.11.0.tar.gz"
|
url "https://github.com/mfikes/planck/archive/2.12.0.tar.gz"
|
||||||
sha256 "5eb997639d5303c51ab45c7b23c2db7f5a5bafffe5a5b17803521528bef7e92b"
|
sha256 "ccaed676a7847becc045c7491b47ab3e218ab7ed7fe937d222e3cda796ab25e3"
|
||||||
revision 1
|
|
||||||
head "https://github.com/mfikes/planck.git"
|
head "https://github.com/mfikes/planck.git"
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
|
@ -13,19 +12,15 @@ class Planck < Formula
|
||||||
sha256 "431bcc466939eae736db3f6212b2eb768b4ce18cf80c493a78f116a94758735d" => :el_capitan
|
sha256 "431bcc466939eae736db3f6212b2eb768b4ce18cf80c493a78f116a94758735d" => :el_capitan
|
||||||
end
|
end
|
||||||
|
|
||||||
|
depends_on "clojure" => :build
|
||||||
depends_on "cmake" => :build
|
depends_on "cmake" => :build
|
||||||
depends_on :java => ["1.8", :build]
|
|
||||||
depends_on "pkg-config" => :build
|
depends_on "pkg-config" => :build
|
||||||
depends_on "leiningen" => :build
|
|
||||||
depends_on :xcode => :build
|
depends_on :xcode => :build
|
||||||
depends_on "libzip"
|
depends_on "libzip"
|
||||||
depends_on "icu4c"
|
depends_on "icu4c"
|
||||||
depends_on :macos => :mavericks
|
depends_on :macos => :mavericks
|
||||||
|
|
||||||
def install
|
def install
|
||||||
cmd = Language::Java.java_home_cmd("1.8")
|
|
||||||
ENV["JAVA_HOME"] = Utils.popen_read(cmd).chomp
|
|
||||||
|
|
||||||
system "./script/build-sandbox"
|
system "./script/build-sandbox"
|
||||||
bin.install "planck-c/build/planck"
|
bin.install "planck-c/build/planck"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue