summaryrefslogtreecommitdiffstats
path: root/development/cudatoolkit
diff options
context:
space:
mode:
author Giorgio Peron <giorgio.peron@gmail.com>2011-09-09 16:19:06 -0400
committer Niels Horn <niels.horn@slackbuilds.org>2011-09-21 19:48:31 -0300
commit528e14275912c75a46667c7fc2429d9bbccd13d1 (patch)
treece86de943a752862e3514a49dcdd144898e2bdc1 /development/cudatoolkit
parent361ae7d4d44f92f6527cc1dceae9258e6e239438 (diff)
downloadslackbuilds-528e14275912c75a46667c7fc2429d9bbccd13d1.tar.gz
slackbuilds-528e14275912c75a46667c7fc2429d9bbccd13d1.tar.xz
development/cudatoolkit: Added (parallel computing architecture)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/cudatoolkit')
-rw-r--r--development/cudatoolkit/README3
-rw-r--r--development/cudatoolkit/cudatoolkit.SlackBuild105
-rw-r--r--development/cudatoolkit/cudatoolkit.info10
-rw-r--r--development/cudatoolkit/slack-desc19
4 files changed, 137 insertions, 0 deletions
diff --git a/development/cudatoolkit/README b/development/cudatoolkit/README
new file mode 100644
index 0000000000..f127aae613
--- /dev/null
+++ b/development/cudatoolkit/README
@@ -0,0 +1,3 @@
+CUDA Toolkit CUDA is NVIDIA's parallel computing architecture. It
+enables dramatic increases in computing performance by harnessing the
+power of the GPU.
diff --git a/development/cudatoolkit/cudatoolkit.SlackBuild b/development/cudatoolkit/cudatoolkit.SlackBuild
new file mode 100644
index 0000000000..b544da8208
--- /dev/null
+++ b/development/cudatoolkit/cudatoolkit.SlackBuild
@@ -0,0 +1,105 @@
+#!/bin/sh
+
+# Copyright 2008-2011 Giorgio Peron Campodarsego, PD, Italy
+# 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=cudatoolkit
+VERSION=${VERSION:-4.0.17}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+
+case "$( uname -m )" in
+ i?86) ARCH=i386 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+esac
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+set -e
+
+if [ "$ARCH" = "x86_64" ]; then
+ break
+elif [ "$ARCH" = "i386" ]; then
+ break
+else
+ printf "\n\n$ARCH is not supported... \n"
+ exit 1
+fi
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+mkdir -p $PRGNAM-$VERSION
+if [ "$ARCH" = "x86_64" ]; then
+chmod +x $CWD/$PRGNAM\_$VERSION\_linux_64_fedora13.run
+$CWD/$PRGNAM\_$VERSION\_linux_64_fedora13.run -- --prefix=$TMP/$PRGNAM-$VERSION
+break
+elif [ "$ARCH" = "i386" ]; then
+chmod +x $CWD/$PRGNAM\_$VERSION\_linux_32_fedora13.run
+$CWD/$PRGNAM\_$VERSION\_linux_32_fedora13.run -- --prefix=$TMP/$PRGNAM-$VERSION
+break
+fi
+cd $PRGNAM-$VERSION
+chown -R root:root .
+
+# Move the docs to our standard location first
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+mv doc/* $PKG/usr/doc/$PRGNAM-$VERSION
+rm -rf doc
+
+# Now move everything else
+mkdir -p $PKG/usr/share/cuda
+mv * $PKG/usr/share/cuda
+
+# Put library in the standard place
+if [ "$ARCH" = "x86_64" ]; then
+ mkdir -p $PKG/usr/lib64
+ mv $PKG/usr/share/cuda/lib64 $PKG/usr/
+ rm -rf $PKG/usr/share/cuda/lib
+ break
+elif [ "$ARCH" = "i386" ]; then
+ mkdir -p $PKG/usr/lib
+ mv $PKG/usr/share/cuda/lib $PKG/usr/
+ rm -rf $PKG/usr/share/cuda/lib64
+ break
+fi
+
+# Put binary in the standard place
+mkdir -p $PKG/usr/bin
+mv $PKG/usr/share/cuda/bin $PKG/usr/
+
+# Put include in the standard place
+mkdir -p $PKG/usr/include/cuda
+mv $PKG/usr/share/cuda/include/* $PKG/usr/include/cuda
+rm -rf $PKG/usr/share/cuda/include
+
+chmod 0755 $PKG/usr/bin/*
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -c n -l y $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/development/cudatoolkit/cudatoolkit.info b/development/cudatoolkit/cudatoolkit.info
new file mode 100644
index 0000000000..2fccaef5c2
--- /dev/null
+++ b/development/cudatoolkit/cudatoolkit.info
@@ -0,0 +1,10 @@
+PRGNAM="cudatoolkit"
+VERSION="4.0.17"
+HOMEPAGE="http://www.nvidia.com/object/cuda_home_new.html"
+DOWNLOAD="http://developer.download.nvidia.com/compute/cuda/4_0/toolkit/cudatoolkit_4.0.17_linux_32_fedora13.run"
+MD5SUM="20d69b2d5bb7043ca7c2ad679c2825ed"
+DOWNLOAD_x86_64="http://developer.download.nvidia.com/compute/cuda/4_0/toolkit/cudatoolkit_4.0.17_linux_64_fedora13.run"
+MD5SUM_x86_64="152e1069f39fc8bbece875a1b9f576b6"
+MAINTAINER="Giorgio Peron"
+EMAIL="giorgio.peron@gmail.com"
+APPROVED="dsomero"
diff --git a/development/cudatoolkit/slack-desc b/development/cudatoolkit/slack-desc
new file mode 100644
index 0000000000..b984765b2b
--- /dev/null
+++ b/development/cudatoolkit/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 ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+cudatoolkit: CUDA Toolkit (NVIDIA's parallel computing architecture)
+cudatoolkit:
+cudatoolkit: CUDA is NVIDIA's parallel computing architecture. It enables dramatic
+cudatoolkit: increases in computing performance by harnessing the power of
+cudatoolkit: the GPU.
+cudatoolkit:
+cudatoolkit: Homepage http://www.nvidia.com/object/cuda_home_new.html
+cudatoolkit:
+cudatoolkit:
+cudatoolkit:
+cudatoolkit: