summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2021-06-16 18:56:57 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2021-06-16 18:56:57 +0700
commita2d34991daa54f35e5c6861ade30e75ada547728 (patch)
tree1cfbe4b2a7520085232d8c10d8c4337a6e9ff4ce /graphics
parenta7908f7241cc593bdc22a7766e081704c9e2b539 (diff)
downloadslackbuilds-a2d34991daa54f35e5c6861ade30e75ada547728.tar.gz
slackbuilds-a2d34991daa54f35e5c6861ade30e75ada547728.tar.xz
graphics/vulkan-sdk-bin: Removed (included in -current).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/vulkan-sdk-bin/README17
-rw-r--r--graphics/vulkan-sdk-bin/slack-desc19
-rw-r--r--graphics/vulkan-sdk-bin/vulkan-sdk-bin.SlackBuild82
-rw-r--r--graphics/vulkan-sdk-bin/vulkan-sdk-bin.info10
4 files changed, 0 insertions, 128 deletions
diff --git a/graphics/vulkan-sdk-bin/README b/graphics/vulkan-sdk-bin/README
deleted file mode 100644
index d7f13138da..0000000000
--- a/graphics/vulkan-sdk-bin/README
+++ /dev/null
@@ -1,17 +0,0 @@
-This packages the Vulkan SDK binaries for Slackware.
-
-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/vulkan-sdk-bin/slack-desc b/graphics/vulkan-sdk-bin/slack-desc
deleted file mode 100644
index d2e166f431..0000000000
--- a/graphics/vulkan-sdk-bin/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-vulkan-sdk-bin: vulkan-sdk-bin (Vulkan SDK)
-vulkan-sdk-bin:
-vulkan-sdk-bin: The Vulkan SDK provides the development and runtime components
-vulkan-sdk-bin: required to build, run and debug Vulkan applications. This SDK is
-vulkan-sdk-bin: based on the Vulkan API header. Th SDK also includes certain Vulkan
-vulkan-sdk-bin: extensions for window system integration and debug extensions.
-vulkan-sdk-bin:
-vulkan-sdk-bin: The Vulkan API is a low overhead, explicit, cross-platform graphics
-vulkan-sdk-bin: API that provides applications with direct control over the GPU,
-vulkan-sdk-bin: maximizing performance.
-vulkan-sdk-bin:
diff --git a/graphics/vulkan-sdk-bin/vulkan-sdk-bin.SlackBuild b/graphics/vulkan-sdk-bin/vulkan-sdk-bin.SlackBuild
deleted file mode 100644
index 9573026548..0000000000
--- a/graphics/vulkan-sdk-bin/vulkan-sdk-bin.SlackBuild
+++ /dev/null
@@ -1,82 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for vulkan-sdk-bin
-
-# Copyright 2019 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=vulkan-sdk-bin
-SRCNAM=vulkansdk
-VERSION=${VERSION:-1.2.162.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 $VERSION
-tar xfv $CWD/vulkansdk-linux-x86_64-1.2.162.1.tar.gz
-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/{samples,*.txt} \
- $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/vulkan-sdk-bin/vulkan-sdk-bin.info b/graphics/vulkan-sdk-bin/vulkan-sdk-bin.info
deleted file mode 100644
index 1955ae707b..0000000000
--- a/graphics/vulkan-sdk-bin/vulkan-sdk-bin.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="vulkan-sdk-bin"
-VERSION="1.2.162.1"
-HOMEPAGE="https://www.lunarg.com/vulkan-sdk/"
-DOWNLOAD="UNSUPPORTED"
-MD5SUM=""
-DOWNLOAD_x86_64="https://sdk.lunarg.com/sdk/download/1.2.162.1/linux/vulkansdk-linux-x86_64-1.2.162.1.tar.gz"
-MD5SUM_x86_64="ee59ff763ead2790562e55a2b123aec4"
-REQUIRES=""
-MAINTAINER="Dugan Chen"
-EMAIL="thedoogster [at] gmail [dot] com"