01f1497
Name:           intel-gmmlib
01f1497
Version:        18.3.0
2883dcf
Release:        2%{?dist}
01f1497
Summary:        Intel Graphics Memory Management Library
01f1497
01f1497
License:        MIT and BSD
01f1497
URL:            https://github.com/intel/gmmlib
01f1497
Source0:        %{url}/archive/%{name}-%{version}.tar.gz
01f1497
01f1497
# This package relies on intel asm
01f1497
ExclusiveArch:  x86_64 i686
01f1497
01f1497
BuildRequires:  cmake
01f1497
BuildRequires:  gcc
01f1497
BuildRequires:  gcc-c++
01f1497
01f1497
%description
01f1497
The Intel Graphics Memory Management Library provides device specific
01f1497
and buffer management for the Intel Graphics Compute Runtime for OpenCL
01f1497
and the Intel Media Driver for VAAPI.
01f1497
01f1497
%package        devel
01f1497
Summary:        Development files for %{name}
01f1497
Requires:       %{name}%{?_isa} = %{version}-%{release}
01f1497
01f1497
%description    devel
01f1497
The %{name}-devel package contains libraries and header files for
01f1497
developing applications that use %{name}.
01f1497
01f1497
01f1497
%prep
01f1497
%autosetup -p1 -n gmmlib-intel-gmmlib-%{version}
01f1497
# Fix license perm
01f1497
chmod -x LICENSE.md README.rst
01f1497
# Fix source code perm
01f1497
find Source -name "*.cpp" -exec chmod -x {} ';'
01f1497
find Source -name "*.h" -exec chmod -x {} ';'
01f1497
01f1497
01f1497
%build
01f1497
mkdir build
01f1497
pushd build
01f1497
%cmake \
01f1497
  -DRUN_TEST_SUITE:BOOL=False \
01f1497
  ..
01f1497
01f1497
%make_build
01f1497
01f1497
popd
01f1497
01f1497
01f1497
%install
01f1497
pushd build
01f1497
%make_install
01f1497
find %{buildroot} -name '*.la' -exec rm -f {} ';'
01f1497
01f1497
popd
01f1497
01f1497
01f1497
%ldconfig_scriptlets
01f1497
01f1497
01f1497
%files
01f1497
%license LICENSE.md
01f1497
%doc README.rst
01f1497
%{_libdir}/libigdgmm.so.1*
01f1497
01f1497
%files devel
01f1497
%{_includedir}/igdgmm
01f1497
%{_libdir}/libigdgmm.so
01f1497
# We don't use the static library
01f1497
%exclude %{_libdir}/libgmm_umd.a
01f1497
%{_libdir}/pkgconfig/igdgmm.pc
01f1497
01f1497
01f1497
%changelog
2883dcf
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.3.0-2
2883dcf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2883dcf
01f1497
* Mon Oct 08 2018 Nicolas Chauvet <kwizart@gmail.com> - 18.3.0-1
01f1497
- Initial spec file