From 4c172cbde73f43d115a0fb3116f9b2d1b23e5962 Mon Sep 17 00:00:00 2001 From: Dugan Chen Date: Tue, 14 Mar 2017 00:04:19 +0000 Subject: graphics/vulkansdk: Added (Vulkan SDK). Signed-off-by: David Spencer --- graphics/vulkansdk/README | 15 ++++++ graphics/vulkansdk/slack-desc | 19 ++++++++ graphics/vulkansdk/vulkansdk.SlackBuild | 84 +++++++++++++++++++++++++++++++++ graphics/vulkansdk/vulkansdk.info | 10 ++++ 4 files changed, 128 insertions(+) create mode 100644 graphics/vulkansdk/README create mode 100644 graphics/vulkansdk/slack-desc create mode 100644 graphics/vulkansdk/vulkansdk.SlackBuild create mode 100644 graphics/vulkansdk/vulkansdk.info (limited to 'graphics/vulkansdk') diff --git a/graphics/vulkansdk/README b/graphics/vulkansdk/README new file mode 100644 index 0000000000..14e1886dc4 --- /dev/null +++ b/graphics/vulkansdk/README @@ -0,0 +1,15 @@ +The Vulkan SDK provides the development and runtime components +required to build, run and debug Vulkan applications. This SDK is +based on the Vulkan API header. The SDK also includes certain Vulkan +extensions for window system integration and debug extensions. + +The Vulkan API is a low overhead, explicit, cross-platform graphics +API that provides applications with direct control over the GPU, +maximizing performance. + +The SDK does not include a Vulkan driver. Please contact your +CPU hardware vendor for a Vulkan Installable Client Driver (ICD). +This SDK will allow you to build Vulkan applications but you will +need a Vulkan driver (ICD) to execute them. + +The SDK is only supported on x86_64 systems. diff --git a/graphics/vulkansdk/slack-desc b/graphics/vulkansdk/slack-desc new file mode 100644 index 0000000000..1e060c8b6c --- /dev/null +++ b/graphics/vulkansdk/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +vulkansdk: vulkansdk (Vulkan SDK) +vulkansdk: +vulkansdk: The Vulkan SDK provides the development and runtime components +vulkansdk: required to build, run and debug Vulkan applications. This SDK is +vulkansdk: based on the Vulkan API header. Th SDK also includes certain Vulkan +vulkansdk: extensions for window system integration and debug extensions. +vulkansdk: +vulkansdk: The Vulkan API is a low overhead, explicit, cross-platform graphics +vulkansdk: API that provides applications with direct control over the GPU, +vulkansdk: maximizing performance. +vulkansdk: diff --git a/graphics/vulkansdk/vulkansdk.SlackBuild b/graphics/vulkansdk/vulkansdk.SlackBuild new file mode 100644 index 0000000000..51139caae0 --- /dev/null +++ b/graphics/vulkansdk/vulkansdk.SlackBuild @@ -0,0 +1,84 @@ +#!/bin/sh + +# Slackware build script for vulkansdk + +# Copyright 2017 Dugan Chen Canada +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=vulkansdk +VERSION=${VERSION:-1.0.42.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "x86_64" ]; then + LIBDIRSUFFIX="64" +else + echo "$ARCH is not supported." >&2 + exit 1 +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf VulkanSDK $PRGNAM-linux-$ARCH-$VERSION.run +cp $CWD/$PRGNAM-linux-$ARCH-$VERSION.run . +chmod +x $PRGNAM-linux-$ARCH-$VERSION.run +./$PRGNAM-linux-$ARCH-$VERSION.run +cd VulkanSDK +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir -p $PKG/usr/lib$LIBDIRSUFFIX +cp -r $VERSION/$ARCH/lib/* $PKG/usr/lib$LIBDIRSUFFIX +mkdir -p $PKG/{usr/bin,etc,usr/include} +cp -r $VERSION/$ARCH/bin/* $PKG/usr/bin +cp -r $VERSION/$ARCH/etc/* $PKG/etc +cp -r $VERSION/$ARCH/include/* $PKG/usr/include + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + $VERSION/{*.html,doc/,samples/,examples} \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/graphics/vulkansdk/vulkansdk.info b/graphics/vulkansdk/vulkansdk.info new file mode 100644 index 0000000000..6b8d9c036c --- /dev/null +++ b/graphics/vulkansdk/vulkansdk.info @@ -0,0 +1,10 @@ +PRGNAM="vulkansdk" +VERSION="1.0.42.1" +HOMEPAGE="https://www.lunarg.com/vulkan-sdk/" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://vulkan.lunarg.com/sdk/download/1.0.42.1/linux/vulkansdk-linux-x86_64-1.0.42.1.run" +MD5SUM_x86_64="fb60e99dbb04a7179f67b4c455c9aaf6" +REQUIRES="" +MAINTAINER="Dugan Chen" +EMAIL="thedoogster [at] gmail [dot] com" -- cgit v1.2.3