diff --git a/x11/vulkan/vulkan-tools/actions.py b/x11/vulkan/vulkan-tools/actions.py new file mode 100755 index 0000000000..db352e8dcc --- /dev/null +++ b/x11/vulkan/vulkan-tools/actions.py @@ -0,0 +1,37 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import cmaketools +from pisi.actionsapi import autotools +from pisi.actionsapi import shelltools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +pisitools.cxxflags.add("-std=gnu++11") + +ver = get.srcVERSION() + +def setup(): + cmaketools.configure("-DCMAKE_INSTALL_SYSCONFDIR=/etc \ + -DCMAKE_SKIP_RPATH=True \ + -DBUILD_WSI_XCB_SUPPORT=On \ + -DBUILD_WSI_XLIB_SUPPORT=On \ + -DBUILD_WSI_WAYLAND_SUPPORT=On \ + -DBUILD_CUBE=ON \ + -DBUILD_VULKANINFO=ON \ + -DBUILD_ICD=OFF \ + ") + + +def build(): + cmaketools.make() + + +def install(): + autotools.rawInstall("DESTDIR=%s" %get.installDIR()) + + + pisitools.dodoc("README.md", "CONTRIBUTING.md", "LICENSE.txt", "CODE_OF_CONDUCT.md", "GOVERNANCE.md") diff --git a/x11/vulkan/vulkan-tools/pspec.xml b/x11/vulkan/vulkan-tools/pspec.xml new file mode 100755 index 0000000000..97579d3a43 --- /dev/null +++ b/x11/vulkan/vulkan-tools/pspec.xml @@ -0,0 +1,54 @@ + + + + + vulkan-tools + https://www.khronos.org/vulkan/ + + Idris Kalp + idriskalp@gmail.com + + BSD + app:console + Vulkan Utilities and Tools + This project provides Khronos official Vulkan Tools and Utilities for Linux + https://github.com/KhronosGroup/Vulkan-Tools/archive/sdk-1.1.130.0.tar.gz + + libX11-devel + libxcb-devel + libXrandr-devel + wayland-devel + vulkan-headers + vulkan-devel + cmake + git + + + + + vulkan-tools + + libX11 + libxcb + libXrandr + wayland + vulkan + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + + 2020-01-14 + 1.1.130 + First release + Idris Kalp + idriskalp@gmail.com + + +