package created using the webbuild interface [release 2.7.0-1mamba;Thu Oct 31 2024]

This commit is contained in:
Silvan Calarco 2024-11-01 01:12:10 +01:00
parent 7962eb84c8
commit 74526d7f91
2 changed files with 49 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# drm_info
Small utility to dump info about DRM devices.

47
drm_info.spec Normal file
View File

@ -0,0 +1,47 @@
Name: drm_info
Version: 2.7.0
Release: 1mamba
Summary: Small utility to dump info about DRM devices
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://gitlab.freedesktop.org/emersion/drm_info
Source: https://gitlab.freedesktop.org/emersion/drm_info.git/v%{version}/drm_info-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libdrm-devel
BuildRequires: libjson-c-devel
BuildRequires: libpci-devel
## AUTOBUILDREQ-END
BuildRequires: meson
%description
Small utility to dump info about DRM devices.
%debug_package
%prep
%setup -q
%build
%meson
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%meson_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/drm_info
%{_mandir}/man1/drm_info.1*
%doc LICENSE
%changelog
* Thu Oct 31 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 2.7.0-1mamba
- package created using the webbuild interface