2011-12-18 04:19:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Dart < Formula
|
|
|
|
homepage 'http://www.dartlang.org/'
|
2012-08-15 19:56:23 +00:00
|
|
|
|
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
url 'https://gsdview.appspot.com/dart-editor-archive-integration/10994/dartsdk-macos-64.zip'
|
|
|
|
sha1 '39af10bc1d2c9d33d7b6f485ce39db75e552d789'
|
|
|
|
else
|
|
|
|
url 'https://gsdview.appspot.com/dart-editor-archive-integration/10994/dartsdk-macos-32.zip'
|
|
|
|
sha1 '168bfac62bfd1f717d7b51568d5a7a0f726c493b'
|
|
|
|
end
|
|
|
|
|
|
|
|
version '10994'
|
2011-12-18 04:19:38 +00:00
|
|
|
|
|
|
|
def shim_script target
|
|
|
|
<<-EOS.undent
|
|
|
|
#!/bin/bash
|
2012-06-08 17:26:55 +00:00
|
|
|
exec dart "#{target}" "$@"
|
2011-12-18 04:19:38 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir['*']
|
|
|
|
|
2012-06-08 17:26:55 +00:00
|
|
|
bin.install_symlink libexec+'bin/dart'
|
2012-08-15 19:56:23 +00:00
|
|
|
(bin+'dart2js').write shim_script(libexec+'lib/dart2js/lib/compiler/implementation/dart2js.dart')
|
2012-06-08 17:26:55 +00:00
|
|
|
(bin+'dartdoc').write shim_script(libexec+'lib/dartdoc/dartdoc.dart')
|
|
|
|
(bin+'pub').write shim_script(libexec+'util/pub/pub.dart')
|
2011-12-18 04:19:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-04-20 05:01:38 +00:00
|
|
|
mktemp do
|
|
|
|
(Pathname.pwd+'sample.dart').write <<-EOS.undent
|
|
|
|
void main() {
|
|
|
|
Options opts = new Options();
|
|
|
|
for (String arg in opts.arguments) {
|
|
|
|
print(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
|
|
|
|
`#{bin}/dart sample.dart test message` == "test\nmessage\n"
|
|
|
|
end
|
2011-12-18 04:19:38 +00:00
|
|
|
end
|
|
|
|
end
|