aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dart.rb
blob: 38a48b433fdb1961aa4ced5ff0bdfa49e2e6756b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'formula'

class Dart < Formula
  homepage 'http://www.dartlang.org/'
  url 'https://gsdview.appspot.com/dart-editor-archive-integration/8370/dart-macos.zip'
  version '8370'
  sha1 '3012ee60ef3ecc082a9ce2cb780feffb488540f5'

  def shim_script target
    <<-EOS.undent
      #!/bin/bash
      exec "#{target}" "$@"
    EOS
  end

  def install
    libexec.install Dir['*']

    (bin+'dart').write shim_script("#{libexec}/bin/dart")
    (bin+'dart2js').write shim_script("#{libexec}/bin/dart2js")
    (bin+'pub').write shim_script("#{libexec}/bin/pub")
  end

  def test
    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
  end
end