blob: 2a7fd4e8b784e53af8617e911cf8191466776c83 (
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.0/zinc-0.2.0.tgz'
sha1 '1161817f71a9dc1326a58854b40bdc80d19f8e4d'
def install
rm_f Dir["bin/ng/{linux,win}*"]
libexec.install Dir['*']
bin.install_symlink libexec/"bin/zinc"
end
end
|