blob: f8f6cad8d03f5a49d24dd68d2f16ef3163ed8498 (
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.5/zinc-0.3.5.tgz'
sha1 '1ae45236fdf0ad91e739889bffb7829d9308cdea'
def install
rm_f Dir["bin/ng/{linux,win}*"]
libexec.install Dir['*']
bin.install_symlink libexec/"bin/zinc"
end
end
|