28 lines
879 B
Ruby
28 lines
879 B
Ruby
class Planck < Formula
|
|
desc "A command-line ClojureScript REPL for OS X."
|
|
homepage "http://planck-repl.org/"
|
|
head "https://github.com/mfikes/planck.git"
|
|
url "https://github.com/mfikes/planck/archive/1.9.tar.gz"
|
|
sha256 "3a12e740feda792ccad85e9d1f33798e1af4a6bf2131b41f3be27d3f3489f4be"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "25251f8762f2d66e39551c6f3775bfb9ed48ee9fb23fb9a3b81c9e61039a3a62" => :el_capitan
|
|
sha256 "05a1e4834ecffa3f2428e5930eaca679dbcebd62adb56d71604a786191c2b4d8" => :yosemite
|
|
sha256 "ed75d94350e555ded5f90132d15430dd85aaf145d65b4d2b0765af85a6c67077" => :mavericks
|
|
end
|
|
|
|
depends_on "leiningen" => :build
|
|
|
|
depends_on :xcode => :build
|
|
depends_on :macos => :lion
|
|
|
|
def install
|
|
system "./script/build-sandbox"
|
|
bin.install "build/Release/planck"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/planck", "-e", "(- 1 1)"
|
|
end
|
|
end
|