Jan Engelhardt
cbfa777e85
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/spirv-tools?expand=0&rev=13
102 lines
2.9 KiB
RPMSpec
102 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package spirv-tools
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define version_unconverted 2016.7~g154
|
|
%define lname libSPIRV-Tools-suse3
|
|
|
|
Name: spirv-tools
|
|
Version: 2016.7~g154
|
|
Release: 0
|
|
Summary: API and commands for processing SPIR-V modules
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/C and C++
|
|
Url: https://github.com/KhronosGroup/SPIRV-Tools
|
|
|
|
Source: %name-%version.tar.xz
|
|
Source9: baselibs.conf
|
|
Patch1: ver.diff
|
|
Patch2: gcc48.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: bison
|
|
BuildRequires: cmake >= 2.8.12
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: python
|
|
BuildRequires: python-xml
|
|
BuildRequires: python3
|
|
BuildRequires: spirv-headers
|
|
|
|
%description
|
|
The package includes an assembler, binary module parser,
|
|
disassembler, and validator for SPIR-V.
|
|
|
|
%package -n %lname
|
|
Summary: SPIR-V tool component library
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
The SPIR-V Tool library contains all of the implementation details
|
|
driving the SPIR-V assembler, binary module parser, disassembler and
|
|
validator, and is used in the standalone tools whilst also enabling
|
|
integration into other code bases directly.
|
|
|
|
%package devel
|
|
Summary: Development headers for the SPIR-V tool library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
The SPIR-V Tool library contains all of the implementation details
|
|
driving the SPIR-V assembler, binary module parser, disassembler and
|
|
validator, and is used in the standalone tools whilst also enabling
|
|
integration into other code bases directly.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -P 1 -P 2 -p1
|
|
|
|
%build
|
|
%cmake -D"SPIRV-Headers_SOURCE_DIR=%_prefix"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
b="%buildroot"
|
|
%cmake_install
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%_bindir/spirv-*
|
|
%doc LICENSE
|
|
|
|
%files -n %lname
|
|
%defattr(-,root,root)
|
|
%_libdir/libSPIRV-Tools.so.*
|
|
%_libdir/libSPIRV-Tools-comp.so.*
|
|
%_libdir/libSPIRV-Tools-opt.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_libdir/libSPIRV-Tools.so
|
|
%_libdir/libSPIRV-Tools-comp.so
|
|
%_libdir/libSPIRV-Tools-opt.so
|
|
%_includedir/spirv-tools/
|
|
|
|
%changelog
|