package created using the webbuild interface [release 3.0.23.01.25-1mamba;Sat Oct 12 2024]

This commit is contained in:
Silvan Calarco 2024-10-13 09:37:52 +02:00
parent 0b346d3f5f
commit 0d9a68de19
2 changed files with 45 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# clinfo
Print all known information about all available OpenCL platforms and devices in the system.

43
clinfo.spec Normal file
View File

@ -0,0 +1,43 @@
Name: clinfo
Version: 3.0.23.01.25
Release: 1mamba
Summary: Print all known information about all available OpenCL platforms and devices in the system
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/Oblomov/clinfo
Source: https://github.com/Oblomov/clinfo.git/%{version}/clinfo-%{version}.tar.bz2
License: Public Domain
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ocl-icd-devel
## AUTOBUILDREQ-END
%description
Print all known information about all available OpenCL platforms and devices in the system.
%debug_package
%prep
%setup -q
%build
%make PREFIX=%{_prefix}
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall PREFIX=%{_prefix} MANDIR=%{_mandir}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/clinfo
%{_mandir}/man1/clinfo.1*
%doc LICENSE
%changelog
* Sat Oct 12 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 3.0.23.01.25-1mamba
- package created using the webbuild interface