add spec file accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix tizen_6.0 tizen_6.0_hotfix accepted/tizen/5.5/unified/20191031.005129 accepted/tizen/5.5/unified/mobile/hotfix/20201027.072024 accepted/tizen/5.5/unified/wearable/hotfix/20201027.104603 accepted/tizen/6.0/unified/20201030.104209 accepted/tizen/6.0/unified/hotfix/20201103.050514 accepted/tizen/unified/20181228.115146 submit/tizen/20181227.054638 submit/tizen/20181228.024305 submit/tizen_5.5/20191031.000006 submit/tizen_5.5_mobile_hotfix/20201026.185108 submit/tizen_5.5_wearable_hotfix/20201026.184308 submit/tizen_6.0/20201029.205504 submit/tizen_6.0_hotfix/20201102.192904 submit/tizen_6.0_hotfix/20201103.115104 tizen_5.5.m2_release tizen_6.0.m2_release
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 29 Nov 2018 12:29:50 +0000 (21:29 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Thu, 27 Dec 2018 05:22:28 +0000 (14:22 +0900)
packaging/vulkan-loader.manifest [new file with mode: 0644]
packaging/vulkan-loader.spec [new file with mode: 0644]

diff --git a/packaging/vulkan-loader.manifest b/packaging/vulkan-loader.manifest
new file mode 100644 (file)
index 0000000..97e8c31
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+       <request>
+               <domain name="_"/>
+       </request>
+</manifest>
diff --git a/packaging/vulkan-loader.spec b/packaging/vulkan-loader.spec
new file mode 100644 (file)
index 0000000..b783f44
--- /dev/null
@@ -0,0 +1,68 @@
+Name:      vulkan-loader
+Version:    1.1.92
+Release:    0
+Summary:    Vulkan ICD loader
+Group:      Graphics & UI Framework/GL
+License:    Apache-2.0
+Source:                %{name}-%{version}.tar.gz
+Source1001: %{name}.manifest
+
+BuildRequires:  cmake
+BuildRequires:  python3
+BuildRequires:  vulkan-headers = %{version}
+BuildRequires:  pkgconfig(wayland-client)
+BuildRequires:  pkgconfig(wayland-cursor)
+BuildRequires:  pkgconfig(wayland-server)
+BuildRequires:  pkgconfig(wayland-egl)
+
+%define BUILD_TYPE Debug
+
+%description
+This project provides the Khronos Vulkan ICD.
+
+%package        devel
+Summary:        Development files for %{name}
+Requires:       vulkan-headers
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+%prep
+%setup -q
+
+%build
+cp %{SOURCE1001} .
+export CFLAGS="$CFLAGS -w"
+cmake -DCMAKE_BUILD_TYPE=%{BUILD_TYPE} -DBUILD_TESTS=OFF \
+      -DBUILD_WSI_XLIB_SUPPORT=OFF -DBUILD_WSI_XCB_SUPPORT=OFF -DBUILD_WSI_WAYLAND_SUPPORT=ON \
+      -DCMAKE_INSTALL_LIBDIR=%{_libdir} -DCMAKE_INSTALL_INCLUDEDIR=%{_includedir} -DCMAKE_INSTALL_DATADIR=%{_datadir}
+make
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}%{_sysconfdir}/vulkan/{explicit,implicit}_layer.d/ \
+%{buildroot}%{_datadir}/vulkan/{explicit,implicit}_layer.d/ \
+%{buildroot}{%{_sysconfdir},%{_datadir}}/vulkan/icd.d
+%make_install
+
+%remove_docs
+
+%files
+%manifest %{name}.manifest
+%license LICENSE.txt
+%defattr(-,root,root,-)
+%dir %{_sysconfdir}/vulkan/
+%dir %{_sysconfdir}/vulkan/explicit_layer.d/
+%dir %{_sysconfdir}/vulkan/icd.d/
+%dir %{_sysconfdir}/vulkan/implicit_layer.d/
+%dir %{_datadir}/vulkan/
+%dir %{_datadir}/vulkan/explicit_layer.d/
+%dir %{_datadir}/vulkan/icd.d/
+%dir %{_datadir}/vulkan/implicit_layer.d/
+%{_libdir}/*.so.*
+
+%files devel
+%{_libdir}/pkgconfig/vulkan.pc
+%{_libdir}/*.so
+