jerryscript 2.3.0 (new formula)

Closes #57104.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
master
Dario Vladovic 2020-06-29 22:02:59 +02:00 committed by Sean Molenaar
parent 251d53d579
commit d6af9ee2f9
1 changed files with 52 additions and 0 deletions

52
Formula/jerryscript.rb Normal file
View File

@ -0,0 +1,52 @@
class Jerryscript < Formula
desc "Ultra-lightweight JavaScript engine for the Internet of Things"
homepage "https://jerryscript.net"
url "https://github.com/jerryscript-project/jerryscript/archive/v2.3.0.tar.gz"
sha256 "75f039f2e7eb55e3ce5d48fd6f9c4e8ec643a94654070125a6d76a906218e0fa"
head "https://github.com/jerryscript-project/jerryscript.git"
depends_on "cmake" => :build
def install
args = std_cmake_args + %w[
-DCMAKE_BUILD_TYPE=MinSizeRel
-DJERRY_CMDLINE=ON
]
mkdir "build" do
system "cmake", "..", *args
system "cmake", "--build", "."
system "make", "install"
end
end
test do
(testpath/"test.js").write "print('Hello, Homebrew!');"
assert_equal "Hello, Homebrew!", shell_output("#{bin}/jerry test.js").strip
(testpath/"test.c").write <<~EOS
#include <stdio.h>
#include "jerryscript.h"
int main (void)
{
const jerry_char_t script[] = "1 + 2";
const jerry_length_t script_size = sizeof(script) - 1;
jerry_init(JERRY_INIT_EMPTY);
jerry_value_t eval_ret = jerry_eval(script, script_size, JERRY_PARSE_NO_OPTS);
bool run_ok = !jerry_value_is_error(eval_ret);
if (run_ok) {
printf("1 + 2 = %d\\n", (int) jerry_get_number_value(eval_ret));
}
jerry_release_value(eval_ret);
jerry_cleanup();
return (run_ok ? 0 : 1);
}
EOS
system ENV.cc, "test.c", "-o", "test", "-I#{include}", "-L#{lib}",
"-ljerry-core", "-ljerry-port-default", "-ljerry-ext"
assert_equal "1 + 2 = 3", shell_output("./test").strip, "JerryScript can add number"
end
end