Epiphany is a simple yet powerful GNOME web browser targeted at non-technical users. Its principles are simplicity and standards compliance.
This package is known to build and work properly using an LFS-11.1 platform.
Download (HTTP): https://download.gnome.org/sources/epiphany/41/epiphany-41.3.tar.xz
Download (FTP): ftp://ftp.acc.umu.se/pub/gnome/sources/epiphany/41/epiphany-41.3.tar.xz
Download MD5 sum: f156959161559985385b33ee3936410f
Download size: 5.9 MB
Estimated disk space required: 125 MB
Estimated build time: 0.3 SBU (Using parallelism=4, including tests)
Gcr-3.40.0, gnome-desktop-41.3, ISO Codes-4.9.0, JSON-GLib-1.6.6, libnotify-0.7.9, libportal-0.5, Nettle-3.7.3, and WebKitGTK-2.34.6
libdazzle-3.42.0 and libhandy-1.4.0
gnome-keyring-40.0 (for storing passwords) and Seahorse-41.0 (for managing stored passwords)
User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/epiphany
First, fix building with newer versions of meson:
sed -i '/merge_file/{n;d}' data/meson.build
Next, fix an issue building Epiphany with libportal-0.5 or later:
sed "/dependency/s@'libportal'@'libportal-gtk3'@" -i meson.build sed "/portal-gtk3/s@portal/@portal-gtk3/@" -i lib/ephy-flatpak-utils.c
Install Epiphany by running the following commands:
mkdir build && cd build && meson --prefix=/usr --buildtype=release .. && ninja
Now, as the root
user:
ninja install
If you installed the package to your system using a “DESTDIR”
method, /usr/share/glib-2.0/schemas/gschemas.compiled
was not updated/created. Create (or update) the file using the
following command as the root
user:
glib-compile-schemas /usr/share/glib-2.0/schemas
One test would fail if this package is not installed, so it's better to run the test suite after installation. To test the results, issue ninja test. The tests must be run from a graphical session.
--buildtype=release
:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.
Last updated on