Zinc 1.4.0

Closes Homebrew/homebrew#15511.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Brian Martin 2012-10-17 11:30:06 -04:00 committed by Adam Vandenberg
parent 985ba30158
commit aa50f18cfc
1 changed files with 13 additions and 0 deletions

13
Formula/zinc.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Zinc < Formula
homepage 'https://github.com/typesafehub/zinc'
url 'http://repo.typesafe.com/typesafe/zinc/com/typesafe/zinc/dist/0.1.4/zinc-0.1.4.tgz'
sha1 '5b89a87118c00c023b66403cc91d2c6f8c0f7e27'
def install
rm_f Dir["bin/ng/{linux,win}*"]
libexec.install Dir['*']
bin.install_symlink libexec/"bin/zinc"
end
end