95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
12 lines
408 B
Ruby
12 lines
408 B
Ruby
class Zinc < Formula
|
|
desc "Stand-alone version of sbt's Scala incremental compiler"
|
|
homepage "https://github.com/typesafehub/zinc"
|
|
url "http://downloads.typesafe.com/zinc/0.3.7/zinc-0.3.7.tgz"
|
|
sha256 "8775465c624bfb2180cb03734e6ad682849663b3a70fa73bb962af496df89a3d"
|
|
|
|
def install
|
|
rm_f Dir["bin/ng/{linux,win}*"]
|
|
libexec.install Dir["*"]
|
|
bin.install_symlink libexec/"bin/zinc"
|
|
end
|
|
end
|