Update to 11.3.1.002-1

This commit is contained in:
graysky 2016-02-07 08:23:53 -05:00
parent 4bd7ba2021
commit e9eec24179
2 changed files with 17 additions and 17 deletions

View file

@ -1,14 +1,16 @@
# Generated by mksrcinfo v8
# Sun Feb 7 13:23:53 UTC 2016
pkgbase = linpack pkgbase = linpack
pkgver = 11.3.0.006 pkgver = 11.3.1.002
pkgrel = 1 pkgrel = 1
url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download
arch = i686 arch = i686
arch = x86_64 arch = x86_64
license = custom license = custom
source = http://registrationcenter.intel.com/irc_nas/7963/l_lpk_p_11.3.0.006.tgz source = http://registrationcenter.intel.com/irc_nas/8305/l_mklb_p_11.3.1.002.tgz
source = linpack.conf source = linpack.conf
source = runme.template source = runme.template
sha256sums = bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c sha256sums = aac34c9960a394130bc5b77060dc3e2066d36a8b020465f0ec16d5a30551ed1b
sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254
sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31 sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31

View file

@ -1,16 +1,16 @@
# Contributor: graysky <graysky AT archlinux dot us> # Contributor: graysky <graysky AT archlinux dot us>
pkgname=('linpack') pkgname=('linpack')
pkgver=11.3.0.006 pkgver=11.3.1.002
_pkgvershort=11.3 _math_kernel_lib=11.3.1
_stupid_number=7963 _url=8305
pkgrel=1 pkgrel=1
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
license=('custom') license=('custom')
url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download"
source=("http://registrationcenter.intel.com/irc_nas/$_stupid_number/l_lpk_p_$pkgver.tgz" source=("http://registrationcenter.intel.com/irc_nas/$_url/l_mklb_p_$pkgver.tgz"
'linpack.conf' 'runme.template') 'linpack.conf' 'runme.template')
sha256sums=('bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c' sha256sums=('aac34c9960a394130bc5b77060dc3e2066d36a8b020465f0ec16d5a30551ed1b'
'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254'
'8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31') '8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31')
@ -24,18 +24,16 @@ package_linpack() {
pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' pkgdesc='Benchmark based on linear algebra excellent app for stress testing.'
install=readme.install install=readme.install
backup=(etc/linpack.conf) backup=(etc/linpack.conf)
_path="l_lpk_p_$pkgver/linpack_$_pkgvershort" _base="$srcdir/l_mklb_p_$pkgver/benchmarks_$_math_kernel_lib"
_binpath="$_path/linux/mkl/benchmarks/linpack" _test="$_base/linux/mkl/benchmarks/linpack"
_docpath="$_path/documentation_2016/en/mkl/common/mkl_userguide"
# setup based on detected arch # setup based on detected arch
sed -e "s/@TARGET_BIT@/$bit/g" <runme.template >linpack_runme_xeon$bit sed -e "s/@TARGET_BIT@/$bit/g" <runme.template >linpack_runme_xeon$bit
install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit"
install -Dm644 linpack.conf "$pkgdir/etc/linpack.conf" install -Dm644 linpack.conf "$pkgdir/etc/linpack.conf"
install -Dm644 "$srcdir/$_path/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt"
install -Dm644 "$srcdir/$_path/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" install -Dm644 "$_base/support.txt" "$pkgdir/usr/share/doc/linpack/support.txt"
install -Dm755 "$srcdir/$_binpath/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit"
install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" #install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk"
cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack" #cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack"
} }