Gjs is a set of Javascript bindings for GNOME.
![[Note]](../images/note.png)
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://download.gnome.org/sources/gjs/1.78/gjs-1.78.0.tar.xz
Download MD5 sum: adb083a5245ee4fefaf2714084174190
Download size: 640 KB
Estimated disk space required: 240 MB (with tests)
Estimated build time: 0.3 SBU (with tests; with parallelism=4)
Cairo-1.18.0, dbus-1.14.10, gobject-introspection-1.78.1, and SpiderMonkey from Firefox-115.5.0
Valgrind-3.22.0 (for tests), DTrace, LCOV, sysprof, and Systemtap
Install Gjs by running the following commands:
mkdir gjs-build &&
cd gjs-build &&
meson setup --prefix=/usr \
--buildtype=release \
--wrap-mode=nofallback \
.. &&
ninjaTo test the results, issue: ninja test.
Now, as the root user:
ninja install
--buildtype=release: Specify a buildtype
suitable for stable releases of the package, as the default may
produce unoptimized binaries.
--wrap-mode=nofallback: This switch prevents
meson from using subproject fallbacks for any
dependency declarations in the build files, stopping it downloading
any optional dependency which is not installed on the system.
-Dprofiler=disabled: prevents building the profiler
backend even if sysprof is installed.