diff options
author | SooChan Lim <sc1.lim@samsung.com> | 2018-11-29 20:27:33 +0900 |
---|---|---|
committer | SooChan Lim <sc1.lim@samsung.com> | 2018-12-27 14:21:13 +0900 |
commit | 1b8ffd0cf492d94d51f7335ab76c0953d304aa00 (patch) | |
tree | ec53bfd455a22ab182bbbcdf1ee4ae3d7dff5f13 | |
parent | 114c3546e195819bd53a34b39f5194b2989a5b12 (diff) | |
download | Vulkan-Headers-tizen_6.0.tar.gz Vulkan-Headers-tizen_6.0.tar.bz2 Vulkan-Headers-tizen_6.0.zip |
add spec filetizen_6.0.m2_releasetizen_5.5.m2_releasesubmit/tizen_6.0_hotfix/20201103.115104submit/tizen_6.0_hotfix/20201102.192904submit/tizen_6.0/20201029.205504submit/tizen_5.5_wearable_hotfix/20201026.184308submit/tizen_5.5_mobile_hotfix/20201026.185108submit/tizen_5.5/20191031.000006submit/tizen/20181228.024305submit/tizen/20181227.054638accepted/tizen/unified/20181228.115144accepted/tizen/6.0/unified/hotfix/20201103.045708accepted/tizen/6.0/unified/20201030.103714accepted/tizen/5.5/unified/wearable/hotfix/20201027.104215accepted/tizen/5.5/unified/mobile/hotfix/20201027.071547accepted/tizen/5.5/unified/20191031.004726tizen_6.0_hotfixtizen_6.0tizen_5.5_wearable_hotfixtizen_5.5_tvtizen_5.5_mobile_hotfixtizen_5.5accepted/tizen_6.0_unified_hotfixaccepted/tizen_6.0_unifiedaccepted/tizen_5.5_unified_wearable_hotfixaccepted/tizen_5.5_unified_mobile_hotfixaccepted/tizen_5.5_unified
-rw-r--r-- | packaging/vulkan-headers.spec | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packaging/vulkan-headers.spec b/packaging/vulkan-headers.spec new file mode 100644 index 0000000..c787ce2 --- /dev/null +++ b/packaging/vulkan-headers.spec @@ -0,0 +1,31 @@ +Name: vulkan-headers +Version: 1.1.92 +Release: 0 +License: Apache-2.0 +Summary: Vulkan Header files and API registry +Group: Graphics & UI Framework/GL +Source0: %{name}-%{version}.tar.gz + +BuildRequires: cmake + +%description +Vulkan Header files and API registry + +%prep +%setup -q + +%build +cmake -DCMAKE_INSTALL_LIBDIR=%{_libdir} -DCMAKE_INSTALL_INCLUDEDIR=%{_includedir} -DCMAKE_INSTALL_DATADIR=%{_datadir} . +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +%make_install + +%remove_docs + +%files +%defattr(-,root,root,-) +%{_includedir}/vulkan/* +%{_datadir}/vulkan/registry/ + |