94 lines
3.2 KiB
Ruby
94 lines
3.2 KiB
Ruby
class Gjs < Formula
|
|
desc "Javascript Bindings for GNOME"
|
|
homepage "https://wiki.gnome.org/Projects/Gjs"
|
|
url "https://download.gnome.org/sources/gjs/1.48/gjs-1.48.1.tar.xz"
|
|
sha256 "21198950472c3c8f4a4679b0292c663faed04b07ee5de026bfd19eaa4ed15a84"
|
|
|
|
bottle do
|
|
sha256 "6c81bc33d2b9533a2e250c71e952e45752a43fd7fb2e80a43c1378af0e2d5e4b" => :sierra
|
|
sha256 "9e9a16e10ff1c8a18661431eea5dacadaef54a2b3836dc8930f007db8eb0d4da" => :el_capitan
|
|
sha256 "a577cb56007fcdc2438a269e0ddcec9270991caddbb67bb196983125b8e5f9f1" => :yosemite
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gobject-introspection"
|
|
depends_on "nspr"
|
|
depends_on "readline"
|
|
depends_on "gtk+3" => :recommended
|
|
|
|
needs :cxx11
|
|
|
|
# patch submitted upstream: https://bugzilla.gnome.org/show_bug.cgi?id=780350
|
|
patch :DATA
|
|
|
|
resource "mozjs38" do
|
|
url "https://archive.mozilla.org/pub/firefox/releases/38.8.0esr/source/firefox-38.8.0esr.source.tar.bz2"
|
|
sha256 "9475adcee29d590383c4885bc5f958093791d1db4302d694a5d2766698f59982"
|
|
end
|
|
|
|
def install
|
|
resource("mozjs38").stage do
|
|
inreplace "config/rules.mk", "-install_name @executable_path/$(SHARED_LIBRARY) ", "-install_name #{lib}/$(SHARED_LIBRARY) "
|
|
cd("js/src") do
|
|
ENV["PYTHON"] = "python"
|
|
inreplace "configure", "'-Wl,-executable_path,$(LIBXUL_DIST)/bin'", ""
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--with-system-nspr",
|
|
"--with-system-zlib",
|
|
"--with-system-icu",
|
|
"--enable-system-ffi",
|
|
"--enable-readline",
|
|
"--enable-shared-js",
|
|
"--enable-threadsafe"
|
|
system "make"
|
|
system "make", "install"
|
|
rm Dir["#{bin}/*"]
|
|
end
|
|
mv "#{lib}/pkgconfig/js.pc", "#{lib}/pkgconfig/mozjs-38.pc"
|
|
# headers were installed as softlinks, which is not acceptable
|
|
cd(include.to_s) do
|
|
`find . -type l`.chomp.split.each do |link|
|
|
header = File.readlink(link)
|
|
rm link
|
|
cp header, link
|
|
end
|
|
end
|
|
ENV.append_path "PKG_CONFIG_PATH", "#{lib}/pkgconfig"
|
|
# remove mozjs static lib
|
|
rm "#{lib}/libjs_static.ajs"
|
|
end
|
|
ENV.cxx11
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--without-dbus-tests",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.js").write <<-EOS.undent
|
|
#!/usr/bin/env gjs
|
|
const GLib = imports.gi.GLib;
|
|
EOS
|
|
system "#{bin}/gjs", "test.js"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/gi/arg.cpp b/gi/arg.cpp
|
|
index 5502b00..aacc07d 100644
|
|
--- a/gi/arg.cpp
|
|
+++ b/gi/arg.cpp
|
|
@@ -37,6 +37,8 @@
|
|
#include "gjs/byteArray.h"
|
|
#include "gjs/jsapi-wrapper.h"
|
|
#include <util/log.h>
|
|
+#include <cstdlib>
|
|
+#include <cmath>
|
|
|
|
bool
|
|
_gjs_flags_value_is_valid(JSContext *context,
|