blob: d7bfbf4ba34ec5ea693830d31e3bae426149ce81 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | 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
 |