2015-01-24 20:27:40 +00:00
|
|
|
class Iojs < Formula
|
2015-06-02 15:53:34 +00:00
|
|
|
desc "npm-compatible platform based on Node.js"
|
2015-01-24 20:27:40 +00:00
|
|
|
homepage "https://iojs.org/"
|
2015-06-23 17:20:08 +00:00
|
|
|
url "https://iojs.org/dist/v2.3.1/iojs-v2.3.1.tar.xz"
|
|
|
|
sha256 "3e45929ff3d676ebf385f034566f02f9727c74b394d3dadf0b7cbfb3da6f5ab7"
|
2015-01-24 20:27:40 +00:00
|
|
|
|
2015-01-25 01:31:08 +00:00
|
|
|
bottle do
|
2015-06-23 17:49:46 +00:00
|
|
|
sha256 "6ef216280f457d4b0d25363efa2655c4e9cc67cc030f5932f0521d5e20941345" => :yosemite
|
|
|
|
sha256 "d1b65c530fc7a6ce44ae690eec4e84417bda45f4e6dd2efd185c0274d385ab72" => :mavericks
|
|
|
|
sha256 "0f4fc3181e18a19758fda23b8eefd4fe27092dac432218b43169578a9abd3e04" => :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
|