2019-07-14 22:46:59 +00:00
|
|
|
class Quickjs < Formula
|
|
|
|
desc "Small and embeddable JavaScript engine"
|
|
|
|
homepage "https://bellard.org/quickjs/"
|
2019-07-28 21:02:20 +00:00
|
|
|
url "https://bellard.org/quickjs/quickjs-2019-07-28.tar.xz"
|
|
|
|
sha256 "361090ac7d6e30b532b5bf03addfb8017c802a97c15e0843960cef901a10b250"
|
2019-07-14 22:46:59 +00:00
|
|
|
|
2019-07-18 17:21:53 +00:00
|
|
|
bottle do
|
2019-07-21 20:18:51 +00:00
|
|
|
sha256 "291f80952057e91b0e8a9bb449bc9e947e81586979fab12ab64144d9619c18d5" => :mojave
|
|
|
|
sha256 "f64371e9eaf20c2c0cead535c58019bb0c3c647a01cbbe25d8bb9f392630a1ab" => :high_sierra
|
|
|
|
sha256 "a151d816d4799c254fd87ccc8f3576f169bad84298333a98a48d1e429f69a51b" => :sierra
|
2019-07-18 17:21:53 +00:00
|
|
|
end
|
|
|
|
|
2019-07-14 22:46:59 +00:00
|
|
|
def install
|
2019-07-21 16:57:51 +00:00
|
|
|
system "make", "install", "prefix=#{prefix}", "CONFIG_M32="
|
2019-07-14 22:46:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2019-07-21 16:57:51 +00:00
|
|
|
output = shell_output("#{bin}/qjs --eval 'const js=\"JS\"; console.log(`Q${js}${(7 + 35)}`);'").strip
|
|
|
|
assert_match /^QJS42/, output
|
2019-07-14 22:46:59 +00:00
|
|
|
|
|
|
|
path = testpath/"test.js"
|
|
|
|
path.write "console.log('hello');"
|
|
|
|
system "#{bin}/qjsc", path
|
|
|
|
output = shell_output(testpath/"a.out").strip
|
|
|
|
assert_equal "hello", output
|
|
|
|
end
|
|
|
|
end
|