125 lines
3.5 KiB
RPMSpec
125 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package libmbim
|
|
#
|
|
# Copyright (c) 2022-2023 ZhuningOS
|
|
#
|
|
#
|
|
|
|
|
|
Name: libmbim
|
|
Version: 1.26.4
|
|
Release: 150500.1.2
|
|
Summary: Mobile Broadband Interface Model (MBIM) protocol
|
|
License: GPL-2.0-or-later AND LGPL-2.0-or-later
|
|
Group: Productivity/Networking/System
|
|
URL: https://www.freedesktop.org/wiki/Software/libmbim/
|
|
Source: https://www.freedesktop.org/software/libmbim/%{name}-%{version}.tar.xz
|
|
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python3-base
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.48
|
|
BuildRequires: pkgconfig(gobject-2.0)
|
|
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
|
|
|
%description
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Broadband Interface Model (MBIM) protocol.
|
|
|
|
%package -n libmbim-glib4
|
|
Summary: Mobile Broadband Interface Model (MBIM) protocol
|
|
License: LGPL-2.1-or-later
|
|
Group: System/Libraries
|
|
|
|
%description -n libmbim-glib4
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Broadband Interface Model (MBIM) protocol.
|
|
|
|
%package devel
|
|
Summary: Mobile Broadband Interface Model (MBIM) protocol - Development files
|
|
License: LGPL-2.1-or-later
|
|
Group: Development/Languages/C and C++
|
|
Requires: libmbim-glib4 = %{version}
|
|
|
|
%description devel
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Broadband Interface Model (MBIM) protocol.
|
|
|
|
%package -n mbimcli-bash-completion
|
|
Summary: Bash completion for mbimcli
|
|
License: GPL-2.0-or-later AND LGPL-2.0-or-later
|
|
Group: Productivity/Networking/System
|
|
BuildRequires: bash-completion
|
|
Requires: bash-completion
|
|
Supplements: packageand(%{name}:bash-completion)
|
|
|
|
%description -n mbimcli-bash-completion
|
|
This package contain de bash completion command for mbimcli tools.
|
|
|
|
%package -n typelib-1_0-Mbim-1_0
|
|
Summary: Introspection bindings for libmbim
|
|
License: GPL-2.0-or-later AND LGPL-2.0-or-later
|
|
Group: System/Libraries
|
|
|
|
%description -n typelib-1_0-Mbim-1_0
|
|
libmbim is a glib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Broadband Interface Model (MBIM) protocol.
|
|
|
|
This package provides the GObject Introspection bindings for libmbim.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
# Do not rely on env for choosing python
|
|
sed -i "s|env python|python3|g" build-aux/mbim-codegen/*
|
|
%configure \
|
|
--with-udev \
|
|
--disable-static \
|
|
--enable-introspection=yes \
|
|
%{nil}
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%check
|
|
%make_build check
|
|
|
|
%post -n libmbim-glib4 -p /sbin/ldconfig
|
|
%postun -n libmbim-glib4 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc NEWS
|
|
%{_bindir}/mbim-network
|
|
%{_bindir}/mbimcli
|
|
%{_libexecdir}/mbim-proxy
|
|
%{_mandir}/man1/mbim-network.1%{?ext_man}
|
|
%{_mandir}/man1/mbimcli.1%{?ext_man}
|
|
|
|
%files -n libmbim-glib4
|
|
%license COPYING.LIB
|
|
|
|
%{_libdir}/libmbim-glib.so.*
|
|
|
|
%files devel
|
|
%doc AUTHORS README
|
|
# Own these directories to not depend on gtk-doc
|
|
%dir %{_datadir}/gtk-doc
|
|
%dir %{_datadir}/gtk-doc/html
|
|
%doc %{_datadir}/gtk-doc/html/libmbim-glib/
|
|
%{_datadir}/gir-1.0/*.gir
|
|
%{_includedir}/libmbim-glib/
|
|
%{_libdir}/libmbim-glib.so
|
|
%{_libdir}/pkgconfig/mbim-glib.pc
|
|
|
|
%files -n mbimcli-bash-completion
|
|
%{_datadir}/bash-completion/completions/mbimcli
|
|
|
|
%files -n typelib-1_0-Mbim-1_0
|
|
%{_libdir}/girepository-1.0/Mbim-1.0.typelib
|
|
|
|
%changelog
|