2015-01-24 20:27:40 +00:00
|
|
|
class Iojs < Formula
|
|
|
|
homepage "https://iojs.org/"
|
2015-03-31 12:55:06 +00:00
|
|
|
url "https://iojs.org/dist/v1.6.3/iojs-v1.6.3.tar.xz"
|
|
|
|
sha256 "79954738268ef0952a61549b951230fac70ce0f7fc709cae25b1d53039430380"
|
2015-01-24 20:27:40 +00:00
|
|
|
|
2015-01-25 01:31:08 +00:00
|
|
|
bottle do
|
2015-03-23 15:08:19 +00:00
|
|
|
sha256 "320bc71ce1b914a0f480c0e856d5a0a42b8bafb2caf139112a2ed46cfffa368b" => :yosemite
|
|
|
|
sha256 "23541eaf4091912d9460f92ca9c077c0bb6aa18f3fb44d5e4066ff63a6d3bc04" => :mavericks
|
|
|
|
sha256 "f379fea32ce86e9f47cd4d63fe2ef68a99f8996124f872ab89387d3b4cd6a8c7" => :mountain_lion
|
2015-01-25 01:31:08 +00:00
|
|
|
end
|
|
|
|
|
2015-01-25 10:48:07 +00:00
|
|
|
keg_only "iojs conflicts with node (which is currently more established)"
|
2015-01-24 20:27:40 +00:00
|
|
|
|
|
|
|
option "with-debug", "Build with debugger hooks"
|
2015-02-04 02:30:47 +00:00
|
|
|
option "with-icu4c", "Build with Intl (icu4c) support"
|
2015-01-24 20:27:40 +00:00
|
|
|
|
2015-02-04 02:30:47 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "icu4c" => :optional
|
2015-01-24 20:27:40 +00:00
|
|
|
depends_on :python => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
args = %W[--prefix=#{prefix} --without-npm]
|
|
|
|
args << "--debug" if build.with? "debug"
|
2015-02-07 01:16:46 +00:00
|
|
|
args << "--with-intl=system-icu" if build.with? "icu4c"
|
2015-02-04 02:30:47 +00:00
|
|
|
|
2015-01-24 20:27:40 +00:00
|
|
|
system "./configure", *args
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2015-01-25 12:48:37 +00:00
|
|
|
iojs was installed without npm.
|
2015-01-24 20:27:40 +00:00
|
|
|
|
2015-01-25 12:48:37 +00:00
|
|
|
iojs currently requires a patched npm (i.e. not the npm installed by node).
|
2015-01-24 20:27:40 +00:00
|
|
|
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
|