8595f5a909
Update to zinc-0.3.7 Closes Homebrew/homebrew#37908. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
336 B
Ruby
13 lines
336 B
Ruby
require 'formula'
|
|
|
|
class Zinc < Formula
|
|
homepage 'https://github.com/typesafehub/zinc'
|
|
url 'http://downloads.typesafe.com/zinc/0.3.7/zinc-0.3.7.tgz'
|
|
sha1 '442e3fde66f58c642efb7fa1355166318f4ac5cd'
|
|
|
|
def install
|
|
rm_f Dir["bin/ng/{linux,win}*"]
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec/"bin/zinc"
|
|
end
|
|
end
|