aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/zinc.rb
blob: 5bb14b77f80e4e38ea320da1d89cbab794ca0bfb (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://repo.typesafe.com/typesafe/zinc/com/typesafe/zinc/dist/0.2.5/zinc-0.2.5.tgz'
  sha1 '2f89bf2b5b77f2353750e1c5fa2a6d0c506c95b3'

  def install
    rm_f Dir["bin/ng/{linux,win}*"]
    libexec.install Dir['*']
    bin.install_symlink libexec/"bin/zinc"
  end
end