blob: 2488decf2898f65ceff02215f8ad5575fea8ede9 (
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
39
40
41
42
43
44
45
  | 
class Iojs < Formula
  homepage "https://iojs.org/"
  url "https://iojs.org/dist/v1.6.1/iojs-v1.6.1.tar.xz"
  sha256 "d5854af15ee48b314dbcbcb8ccd59b4e11163aa99a50f67f5d90c0773ac76d8a"
  bottle do
    sha256 "84cf8a9eb38e7ffc49c2cb59eb7b5be254d264dd73b8ac1c549b4c9bcfbae286" => :yosemite
    sha256 "11f03e7c246e891b392e7c19b79616402823ef600859e92d894458732768aecd" => :mavericks
    sha256 "f57cfc8ebae21a8d0499d6181f55f5ccab06bfa14438f7e6dd2dde773d4dd28d" => :mountain_lion
  end
  keg_only "iojs conflicts with node (which is currently more established)"
  option "with-debug", "Build with debugger hooks"
  option "with-icu4c", "Build with Intl (icu4c) support"
  depends_on "pkg-config" => :build
  depends_on "icu4c" => :optional
  depends_on :python => :build
  def install
    args = %W[--prefix=#{prefix} --without-npm]
    args << "--debug" if build.with? "debug"
    args << "--with-intl=system-icu" if build.with? "icu4c"
    system "./configure", *args
    system "make", "install"
  end
  def caveats; <<-EOS.undent
    iojs was installed without npm.
    iojs currently requires a patched npm (i.e. not the npm installed by node).
    EOS
  end
  test do
    path = testpath/"test.js"
    path.write "console.log('hello');"
    output = `#{bin}/iojs #{path}`.strip
    assert_equal "hello", output
    assert_equal 0, $?.exitstatus
  end
end
  |