Files
packages/anda/system/v4l2loopback/dkms/dkms-v4l2loopback.spec
T
Gilver 7cf1ea076a fix: Use -kmod package as a requirement for akmod-modules (#11073) (#11145)
(cherry picked from commit 9bf954594a)

Signed-off-by: GildedRoach <GildedRoach@users.noreply.github.com>
Co-authored-by: Kyle Gospodnetich <me@kylegospodneti.ch>
2026-04-10 16:44:03 -05:00

57 lines
1.9 KiB
RPMSpec

%global debug_package %{nil}
%global modulename v4l2loopback
%global _description %{expand:
This module allows you to create \"virtual video devices.\" Normal \(v4l2\) applications will read these devices as if they were ordinary video devices, but the video will not be read from e.g. a capture card but instead it is generated by another application.}
Name: dkms-%{modulename}
Version: 0.15.3
Release: 3%{?dist}
Summary: Utils for V4L2 loopback devices
License: GPL-2.0-or-later
URL: https://github.com/v4l2loopback/v4l2loopback
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
Source1: no-weak-modules.conf
BuildRequires: systemd-rpm-macros
Requires: %{modulename} = %{?epoch:%{epoch}:}%{version}
Requires: dkms
Requires: help2man
Conflicts: akmod-%{modulename}
BuildArch: noarch
Packager: Gilver E. <roachy@fyralabs.com>
%description %_description
%prep
%autosetup -p1 -n %{modulename}-%{version}
%build
%install
mkdir -p %{buildroot}%{_usrsrc}/%{modulename}-%{version}
cp -fr v4l2loopback.h v4l2loopback.c v4l2loopback_formats.h dkms.conf Kbuild Makefile %{buildroot}%{_usrsrc}/%{modulename}-%{version}/
%if 0%{?fedora}
# Do not enable weak modules support in Fedora (no kABI):
install -Dpm644 %{SOURCE1} %{buildroot}%{_sysconfdir}/dkms/%{modulename}.conf
%endif
%post
dkms add -m %{modulename} -v %{version} -q --rpm_safe_upgrade || :
# Rebuild and make available for the currently running kernel:
dkms build -m %{modulename} -v %{version} -q || :
dkms install -m %{modulename} -v %{version} -q --force || :
%preun
# Remove all versions from DKMS registry:
dkms remove -m %{modulename} -v %{version} -q --all --rpm_safe_upgrade || :
%files
%{_usrsrc}/%{modulename}-%{version}
%if 0%{?fedora}
%{_sysconfdir}/dkms/%{modulename}.conf
%endif
%changelog
* Fri Mar 07 2025 Gilver E. <rockgrub@disroot.org>
- Initial package