summaryrefslogtreecommitdiff
path: root/community/intel-tbb
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-03-16 10:34:49 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-03-16 10:34:49 +0100
commitf24ad15758f8eebcc46cb0c210f888491869d3f0 (patch)
tree85c74dd33e056502de7a306161d28f5b15b274c2 /community/intel-tbb
parent5f4568c7f7ba204bc047d2c74a5721f23024b339 (diff)
parent636ce8849a9c82c1787c2919ffcfe6685cb799d3 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/chmsee/PKGBUILD community/darkstat/PKGBUILD community/dbmail/PKGBUILD community/dvdisaster/PKGBUILD community/epic4/PKGBUILD community/fb-client/PKGBUILD community/fcrackzip/PKGBUILD community/fdupes/PKGBUILD community/flobopuyo/PKGBUILD community/intel-tbb/PKGBUILD community/openbsd-netcat/PKGBUILD community/sunpinyin/PKGBUILD community/tinc/PKGBUILD community/uudeview/PKGBUILD community/zathura/PKGBUILD core/libedit/PKGBUILD core/mkinitcpio-busybox/PKGBUILD core/openssl/PKGBUILD core/util-linux/PKGBUILD extra/lua/PKGBUILD gnome-unstable/pidgin/PKGBUILD testing/openssl/PKGBUILD testing/sudo/PKGBUILD testing/udev/PKGBUILD testing/util-linux/PKGBUILD
Diffstat (limited to 'community/intel-tbb')
-rw-r--r--community/intel-tbb/PKGBUILD24
1 files changed, 12 insertions, 12 deletions
diff --git a/community/intel-tbb/PKGBUILD b/community/intel-tbb/PKGBUILD
index 4cb2123d7..0c9f0a9d5 100644
--- a/community/intel-tbb/PKGBUILD
+++ b/community/intel-tbb/PKGBUILD
@@ -1,31 +1,31 @@
-# $Id: PKGBUILD 61487 2012-01-01 12:33:54Z andrea $
-# Maintainer:
+# $Id: PKGBUILD 67699 2012-03-14 01:27:34Z 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.0_20111130
+pkgver=4.0_20120201
pkgrel=1
-pkgdesc='An award-winning C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance'
+pkgdesc='High level abstract threading library'
arch=('i686' 'x86_64' 'mips64el')
url='http://www.threadingbuildingblocks.org/'
license=('GPL')
depends=('gcc-libs')
-source=("http://threadingbuildingblocks.org/uploads/77/180/4.0%20update%202/tbb40_20111130oss_src.tgz")
-md5sums=('1e6926b21e865e79772119cd44fc3ad8')
+source=("http://threadingbuildingblocks.org/uploads/77/182/4.0%20update%203/tbb40_20120201oss_src.tgz")
+md5sums=('4669e7d4adee018de7a7b8b972987218')
build() {
- cd tbb${pkgver/\./}oss
+ cd "${srcdir}"/tbb${pkgver/\./}oss
make
}
package() {
- cd tbb${pkgver/\./}oss
+ cd "${srcdir}"/tbb${pkgver/\./}oss
- install -d ${pkgdir}/usr/lib
- install -m755 build/linux_*/*.so* ${pkgdir}/usr/lib
+ install -d "${pkgdir}"/usr/lib
+ install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
- install -d ${pkgdir}/usr/include
- cp -pr include/tbb ${pkgdir}/usr/include
+ install -d "${pkgdir}"/usr/include
+ cp -a include/tbb "${pkgdir}"/usr/include
}