summaryrefslogtreecommitdiff
path: root/community/intel-tbb/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/intel-tbb/PKGBUILD')
-rw-r--r--community/intel-tbb/PKGBUILD31
1 files changed, 0 insertions, 31 deletions
diff --git a/community/intel-tbb/PKGBUILD b/community/intel-tbb/PKGBUILD
deleted file mode 100644
index da92c34d0..000000000
--- a/community/intel-tbb/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 76482 2012-09-18 21:17:25Z stephane $
-# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Denis Martinez <deuns.martinez AT gmail.com>
-
-pkgname=intel-tbb
-pkgver=4.1_20120718
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=('i686' 'x86_64')
-url='http://www.threadingbuildingblocks.org/'
-license=('GPL')
-depends=('gcc-libs')
-source=("http://threadingbuildingblocks.org/uploads/77/188/4.1/tbb${pkgver/\./}oss_src.tgz")
-sha1sums=('3fad942c867f032dc5ddeccd7ca19606eda7065d')
-
-build() {
- cd "${srcdir}"/tbb${pkgver/\./}oss
-
- make
-}
-
-package() {
- cd "${srcdir}"/tbb${pkgver/\./}oss
-
- install -d "${pkgdir}"/usr/lib
- install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
-
- install -d "${pkgdir}"/usr/include
- cp -a include/tbb "${pkgdir}"/usr/include
-}