Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
planck 1.3 (new formula)
Browse files Browse the repository at this point in the history
Closes #42423.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
derekslager authored and MikeMcQuaid committed Aug 4, 2015
1 parent 238672f commit 836676b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Library/Formula/planck.rb
@@ -0,0 +1,20 @@
class Planck < Formula
desc "A command-line ClojureScript REPL for OS X."
homepage "http://planck.fikesfarm.com/"
url "https://github.com/mfikes/planck/archive/1.3.tar.gz"
sha256 "82dabffc03cf16527a867782714f81b93e7bb9e7a5db9d3992b74cc74c169790"

depends_on "leiningen" => :build

depends_on :xcode => :build
depends_on :macos => :yosemite

def install
system "./build.sh"
bin.install "build/Release/planck"
end

test do
system "#{bin}/planck", "-e", "'(- 1 1)'"
end
end

0 comments on commit 836676b

Please sign in to comment.