106 lines
3.0 KiB
RPMSpec
106 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package ocl-icd
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ocl-icd
|
|
Version: 2.3.1
|
|
Release: 0
|
|
Summary: OpenCL ICD Bindings
|
|
License: BSD-2-Clause
|
|
URL: https://github.com/OCL-dev/ocl-icd
|
|
Source: https://github.com/OCL-dev/ocl-icd/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
Source1: baselibs.conf
|
|
# PATCH-FEATURE-OPENSUSE n_UsrShare.patch boo#1173005, comment#8
|
|
Patch0: n_UsrShare.patch
|
|
BuildRequires: libtool
|
|
BuildRequires: opencl-headers >= 2.2
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: ruby
|
|
BuildRequires: pkgconfig(egl)
|
|
|
|
%description
|
|
OpenCL is a royalty-free standard for cross-platform, parallel programming
|
|
of modern processors found in personal computers, servers and
|
|
handheld/embedded devices.
|
|
|
|
This package provides an Installable Client Driver Bindings (ICD Bindings).
|
|
The provided libOpenCL library is able to load any free or non-free installed
|
|
ICD (driver backend).
|
|
|
|
%package -n libOpenCL1
|
|
Summary: OpenCL ICD Bindings
|
|
Suggests: pocl
|
|
Conflicts: nvidia-compute-G04
|
|
Conflicts: nvidia-compute-G05
|
|
Conflicts: nvidia-compute-G06 < 550.120
|
|
|
|
%description -n libOpenCL1
|
|
OpenCL is a royalty-free standard for cross-platform, parallel programming
|
|
of modern processors found in personal computers, servers and
|
|
handheld/embedded devices.
|
|
|
|
This package provides an Installable Client Driver Bindings (ICD Bindings).
|
|
The provided libOpenCL library is able to load any free or non-free installed
|
|
ICD (driver backend).
|
|
|
|
%package devel
|
|
Summary: Development files of ocl-icd
|
|
Requires: libOpenCL1 = %{version}
|
|
Requires: opencl-headers >= 2.2
|
|
Requires: pkgconfig(egl)
|
|
|
|
%description devel
|
|
This package provides the files needed to build OpenCL client drivers that
|
|
use ocl-icd for ICD functionality.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
./bootstrap
|
|
%configure --enable-official-khronos-headers
|
|
%make_build stamp-generator stamp-generator-dummy
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
rm -rf instdocs
|
|
mv %{buildroot}%{_datadir}/doc/%{name} instdocs
|
|
|
|
%post -n libOpenCL1 -p /sbin/ldconfig
|
|
|
|
%postun -n libOpenCL1 -p /sbin/ldconfig
|
|
|
|
%check
|
|
%make_build check
|
|
|
|
%files -n libOpenCL1
|
|
%doc README
|
|
%{_libdir}/libOpenCL.so.1*
|
|
|
|
%files devel
|
|
%doc README NEWS
|
|
%license COPYING
|
|
%doc instdocs/*
|
|
%{_libdir}/libOpenCL.so
|
|
%{_libdir}/pkgconfig/OpenCL.pc
|
|
%{_libdir}/pkgconfig/ocl-icd.pc
|
|
%{_includedir}/ocl_icd.h
|
|
|
|
%changelog
|