The libsoup is a HTTP client/server library for GNOME. It uses GObject and the GLib main loop to integrate with GNOME applications and it also has an asynchronous API for use in threaded applications.
This package is known to build and work properly using an LFS 11.3 platform.
Download (HTTP): https://download.gnome.org/sources/libsoup/2.74/libsoup-2.74.3.tar.xz
Download (FTP): ftp://ftp.acc.umu.se/pub/gnome/sources/libsoup/2.74/libsoup-2.74.3.tar.xz
Download MD5 sum: 8f657fd301a213629204b3320c35d75a
Download size: 1.4 MB
Estimated disk space required: 17 MB (with tests)
Estimated build time: 0.3 SBU (Using parallelism=4; with tests)
glib-networking-2.74.0, libpsl-0.21.2, libxml2-2.10.3, and SQLite-3.40.1
gobject-introspection-1.74.0 and Vala-0.56.4
Apache-2.4.55 (required to run the test suite), Brotli-1.0.9, cURL-7.88.1 (required to run the test suite), sysprof-3.46.0 (for profiling), MIT Kerberos V5-1.20.1 (required to run the test suite), GTK-Doc-1.33.2, PHP-8.2.3 compiled with XMLRPC-EPI support (only used for the XMLRPC regression tests), and Samba-4.17.5 (ntlm_auth is required to run the test suite)
User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/libsoup
Install libsoup by running the following commands:
mkdir build && cd build && meson --prefix=/usr \ --buildtype=release \ -Dvapi=enabled \ -Dgssapi=disabled \ -Dsysprof=disabled \ .. && ninja
To test the results, issue: ninja
test. One test named ssl-test
is known to fail.
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.
-Dvapi=disabled
: Use this if you have
not installed Vala, e.g. because
you are not building GNOME.
-Ddoc=enabled
: Use this option if you
want to build the documentation. Note that you must have GTK-Doc-1.33.2 installed.
-Dgssapi=disabled
: libsoup
defaults to building with GSSAPI support, which requires Kerberos
(as does the test suite). If you are building GNOME or have
kerberos installed, remove this option.
-Dsysprof=disabled
: libsoup
will automatically download a git version of sysprof-3.46.0
if git is available or use the installed version if available. If
you need profiling, remove this option.