The libmbim package contains a GLib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol.
![[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://gitlab.freedesktop.org/mobile-broadband/libmbim/-/archive/1.32.0/libmbim-1.32.0.tar.gz
Download MD5 sum: 6cb72544c66a5f9f9528315095ccb1ac
Download size: 289 KB
Estimated disk space required: 43 MB (with tests)
Estimated build time: 0.2 SBU (with tests)
GLib-2.86.1 (with GObject Introspection)
Install libmbim by running the following commands:
mkdir build &&
cd    build &&
meson setup ..                 \
      --prefix=/usr            \
      --buildtype=release      \
      -D bash_completion=false \
      -D man=false             &&
ninja
        To 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.
        
          -D bash_completion=false:
          Use this option if the external bash-completion
          package is not installed.
        
          -D man=false: Use this
          option if the external help2man package is
          not installed.