2013-02-01 17:00:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class TeeClc < Formula
|
|
|
|
homepage 'http://www.microsoft.com/en-us/download/details.aspx?id=4240'
|
|
|
|
url 'http://download.microsoft.com/download/4/2/7/427AC2CF-8A5B-4DE9-8221-22F54B1903E2/TEE-CLC-11.0.0.1212.zip'
|
|
|
|
sha1 '1f16ac62ab64cfbd88ad471ea3d21a62d5eb78e6'
|
|
|
|
|
2013-11-07 04:57:53 +00:00
|
|
|
conflicts_with 'tiny-fugue', :because => 'both install a `tf` binary'
|
|
|
|
|
2013-02-01 17:00:16 +00:00
|
|
|
def install
|
2014-05-31 15:32:01 +00:00
|
|
|
libexec.install "tf", "lib"
|
|
|
|
(libexec/"native").install "native/macosx"
|
|
|
|
bin.write_exec_script libexec/"tf"
|
|
|
|
share.install "help"
|
2013-02-01 17:00:16 +00:00
|
|
|
end
|
|
|
|
|
2013-03-25 18:35:21 +00:00
|
|
|
test do
|
2013-02-01 17:00:16 +00:00
|
|
|
system "#{bin}/tf"
|
|
|
|
end
|
|
|
|
end
|