The GNOME Online Accounts package contains a framework used to access the user's online accounts.
This package is known to build and work properly using an LFS 12.4 platform.
Download (HTTP): https://download.gnome.org/sources/gnome-online-accounts/3.54/gnome-online-accounts-3.54.5.tar.xz
Download MD5 sum: 68f02e59738cd55694155f975fb39eae
Download size: 476 KB
Estimated disk space required: 24 MB
Estimated build time: 0.2 SBU
Gcr-4.4.0.1, JSON-GLib-1.10.6, libadwaita-1.7.6, rest-0.9.1, and Vala-0.56.18
GLib-2.84.4 (with GObject Introspection)
Gi-DocGen-2025.4, keyutils-1.6.3, MIT Kerberos V5-1.22.1, and Valgrind-3.25.1
![[Note]](../images/note.png) 
          The Google API Key and OAuth tokens below are specific to LFS. If using these instructions for another distro, or if you intend to distribute binary copies of the software using these instructions, please obtain your own keys following the instructions located at https://www.chromium.org/developers/how-tos/api-keys.
Install GNOME Online Accounts by running the following commands:
mkdir build &&
cd    build &&
meson setup                                            \
      --prefix=/usr                                    \
      --buildtype=release                              \
      -D documentation=false                           \
      -D kerberos=false                                \
      -D google_client_secret=5ntt6GbbkjnTVXx-MSxbmx5e \
      -D google_client_id=595013732528-llk8trb03f0ldpqq6nprjp1s79596646.apps.googleusercontent.com \
      .. &&
ninja
        If you've installed Gi-DocGen-2025.4 and you wish to build and install the API documentation of this package, issue:
meson configure -D documentation=true &&
sed "s/project_name()/& + '-' + meson.project_version()/" \
    -i ../doc/meson.build &&
ninja
        This package does not come with a test suite.
          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.
        
          -D google_*: These switches
          set the BLFS OAuth ID and secret for Google services.
        
          -D kerberos=true: Use this switch if
          you have installed MIT Kerberos V5-1.22.1 and wish
          to use it with GNOME Online
          Accounts.