This commit is contained in:
commit
06a780ff22
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
Vulkan-Headers-1.1.91.tar.xz
Normal file
3
Vulkan-Headers-1.1.91.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0487a6262548671de0b93c9bead8a5584f368c1714bbbb71217ce0e1f728028
|
||||
size 383588
|
14
_service
Normal file
14
_service
Normal file
@ -0,0 +1,14 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/KhronosGroup/Vulkan-Headers</param>
|
||||
<param name="revision">master</param>
|
||||
<param name="parent-tag">369e6ea7f9b8cf0155b183da7e5be1b39ef6138d</param>
|
||||
<param name="versionformat">1.1.91</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
</services>
|
8
vulkan-headers.changes
Normal file
8
vulkan-headers.changes
Normal file
@ -0,0 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 12 15:08:36 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Split vulkan SRPM -> vulkan-headers SRPM, following an upstream
|
||||
repository split.
|
||||
- Update to new upstream release 1.1.91
|
||||
* Generally no summary changelog is given for the header SDK
|
||||
by upstream
|
69
vulkan-headers.spec
Normal file
69
vulkan-headers.spec
Normal file
@ -0,0 +1,69 @@
|
||||
#
|
||||
# spec file for package vulkan-headers
|
||||
#
|
||||
# Copyright (c) 2018 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 1.1.91
|
||||
Name: vulkan-headers
|
||||
Version: 1.1.91
|
||||
Release: 0
|
||||
Summary: Vulkan C API header files
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: http://www.khronos.org/
|
||||
Source: Vulkan-Headers-%version.tar.xz
|
||||
BuildRequires: cmake >= 2.8.11
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Vulkan is a 3D graphics and compute API.
|
||||
|
||||
%package -n vulkan-devel
|
||||
Summary: Vulkan C API header files
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: glibc-devel
|
||||
Requires: libstdc++-devel
|
||||
Requires: pkgconfig(wayland-client)
|
||||
Requires: pkgconfig(x11)
|
||||
Requires: pkgconfig(xcb)
|
||||
Requires: pkgconfig(xrandr)
|
||||
|
||||
%description -n vulkan-devel
|
||||
Vulkan is a 3D graphics and compute API providing cross-platform
|
||||
access to modern GPUs with low overhead and targeting realtime
|
||||
graphics applications such as games and interactive media.
|
||||
|
||||
This package contains the development headers for packages wanting
|
||||
to make use of Vulkan.
|
||||
|
||||
%prep
|
||||
%setup -qn Vulkan-Headers-%version
|
||||
|
||||
%build
|
||||
%cmake \
|
||||
-DCMAKE_INSTALL_SYSCONFDIR="%_sysconfdir" \
|
||||
-DBUILD_WSI_MIR_SUPPORT=OFF \
|
||||
-DBUILD_TESTS=OFF
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%files -n vulkan-devel
|
||||
%_includedir/vulkan/
|
||||
%_datadir/vulkan/
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user