2014-10-27 16:29:01 +00:00
|
|
|
class Fibjs < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "JavaScript on Fiber"
|
2016-01-30 00:01:49 +00:00
|
|
|
homepage "http://fibjs.org/en/index.html"
|
2016-02-08 08:52:28 +00:00
|
|
|
url "https://github.com/xicilion/fibjs/releases/download/v0.2.0/fullsrc.zip"
|
|
|
|
version "0.2.0"
|
|
|
|
sha256 "db79df72f4e46e23f1ee3c0c21c5e265ee1fd6ccf841a6cf544b1fa7241713c5"
|
2014-10-27 16:29:01 +00:00
|
|
|
|
|
|
|
head "https://github.com/xicilion/fibjs.git"
|
|
|
|
|
2014-10-27 17:46:11 +00:00
|
|
|
bottle do
|
2015-09-19 13:27:01 +00:00
|
|
|
cellar :any_skip_relocation
|
2016-02-08 09:09:26 +00:00
|
|
|
sha256 "582616a3f4eb28d8b0153890f504af2b7b6feb2e35c5b035e12110d08edf8d97" => :el_capitan
|
|
|
|
sha256 "97832036fe7302f20c3a2ce04b543fdb38283818d45fd19a497549a4d361585a" => :yosemite
|
|
|
|
sha256 "e28aee6fbd4f4a6475dcd720784bd9ca45a77f77674a9432c67b6ede84560d8b" => :mavericks
|
2014-10-27 17:46:11 +00:00
|
|
|
end
|
|
|
|
|
2016-01-10 08:05:46 +00:00
|
|
|
depends_on "cmake" => :build
|
2014-10-27 16:29:01 +00:00
|
|
|
|
|
|
|
def install
|
2015-01-14 01:11:22 +00:00
|
|
|
system "./build", "Release", "-j#{ENV.make_jobs}"
|
2014-10-27 16:29:01 +00:00
|
|
|
bin.install "bin/Darwin_Release/fibjs"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
path = testpath/"test.js"
|
|
|
|
path.write "console.log('hello');"
|
|
|
|
|
2016-01-10 08:05:46 +00:00
|
|
|
output = shell_output("#{bin}/fibjs #{path}").strip
|
2014-10-27 16:29:01 +00:00
|
|
|
assert_equal "hello", output
|
|
|
|
end
|
|
|
|
end
|