homebrew-core/Formula/iojs.rb

48 lines
1.3 KiB
Ruby
Raw Normal View History

class Iojs < Formula
homepage "https://iojs.org/"
url "https://iojs.org/dist/v1.0.4/iojs-v1.0.4.tar.xz"
sha256 "c902f5abbd59c56346680f0b4a71056c51610847b9576acf83a9c210bf664e98"
2015-01-25 01:31:08 +00:00
bottle do
sha1 "a88bf32209a487ed8329476325aeeed2cc5ddb33" => :yosemite
sha1 "1bb64de12cdbfc2c5fc4aa662c1025ee2bed84b2" => :mavericks
sha1 "f62a32113ae476095c7bcdee8dffe6c87f3675a8" => :mountain_lion
end
2015-01-25 10:48:07 +00:00
keg_only "iojs conflicts with node (which is currently more established)"
option "with-debug", "Build with debugger hooks"
depends_on :python => :build
def install
args = %W[--prefix=#{prefix} --without-npm]
args << "--debug" if build.with? "debug"
system "./configure", *args
system "make", "install"
end
def caveats; <<-EOS.undent
2015-01-25 10:48:07 +00:00
iojs was installed without npm. To install npm either:
brew install node
or follow:
https://github.com/npm/npm#fancy-install-unix
2015-01-25 10:48:07 +00:00
To prepend iojs to your PATH add to your ~/.bashrc:
export PATH="#{Formula["iojs"].opt_bin}:$PATH"
This will also e.g. make npm use iojs's 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