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.2 platform.
Download (HTTP): https://download.gnome.org/sources/gnome-online-accounts/3.50/gnome-online-accounts-3.50.4.tar.xz
Download MD5 sum: 93cc587f17ad9c14f03bcd0b9c124f8b
Download size: 400 KB
Estimated disk space required: 14 MB
Estimated build time: 0.2 SBU
Gcr-4.3.0, JSON-GLib-1.8.0, libadwaita-1.5.3, rest-0.9.1, and Vala-0.56.17
GLib-2.80.4 (with GObject Introspection)
![[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 kerberos=false                                \
      -D google_client_secret=5ntt6GbbkjnTVXx-MSxbmx5e \
      -D google_client_id=595013732528-llk8trb03f0ldpqq6nprjp1s79596646.apps.googleusercontent.com \
      .. &&
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 gtk_doc=true: Use this switch if you
          have GTK-Doc-1.34.0 installed and you wish to
          generate the API documentation.
        
          -D kerberos=true: Use this switch if
          you have installed MIT Kerberos V5-1.21.3 and wish
          to use it with GNOME Online
          Accounts.