From 4bd7ba2021625cb36ddd428915e13031637e83ad Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 19 Sep 2015 08:03:01 -0400 Subject: [PATCH] Update to 11.3.0.006-1 --- .SRCINFO | 6 +++--- PKGBUILD | 23 ++++++++++++----------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 653c4af..31c6b2c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = linpack - pkgver = 11.2.2.010 + pkgver = 11.3.0.006 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter.intel.com/irc_nas/5232/l_lpk_p_11.2.2.010.tgz + source = http://registrationcenter.intel.com/irc_nas/7963/l_lpk_p_11.3.0.006.tgz source = linpack.conf source = runme.template - sha256sums = 88fcc540425a7be8bd9e78af66474492f8c0f11d9ad4ad8a82879dc5757ffdf2 + sha256sums = bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31 diff --git a/PKGBUILD b/PKGBUILD index acc259e..057dc8c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=11.2.2.010 -_pkgvershort=11.2.2 -_stupid_number=5232 +pkgver=11.3.0.006 +_pkgvershort=11.3 +_stupid_number=7963 pkgrel=1 arch=('i686' 'x86_64') license=('custom') 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" 'linpack.conf' 'runme.template') -sha256sums=('88fcc540425a7be8bd9e78af66474492f8c0f11d9ad4ad8a82879dc5757ffdf2' +sha256sums=('bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31') @@ -24,17 +24,18 @@ package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' install=readme.install backup=(etc/linpack.conf) - _path="l_lpk_p_$pkgver/linpack_$_pkgvershort/benchmarks/linpack" - _docpath="l_lpk_p_$pkgver/linpack_$_pkgvershort/doc" + _path="l_lpk_p_$pkgver/linpack_$_pkgvershort" + _binpath="$_path/linux/mkl/benchmarks/linpack" + _docpath="$_path/documentation_2016/en/mkl/common/mkl_userguide" # setup based on detected arch sed -e "s/@TARGET_BIT@/$bit/g" 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 "$srcdir/$_docpath/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" - install -Dm644 "$srcdir/$_docpath/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" - install -Dm755 "$srcdir/$_path/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" - install -Dm644 "$srcdir/$_path/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" - cp -r "$srcdir/$_docpath/mkl_userguide" "$pkgdir/usr/share/doc/linpack" + install -Dm644 "$srcdir/$_path/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" + install -Dm644 "$srcdir/$_path/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" + install -Dm755 "$srcdir/$_binpath/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" + install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" + cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack" }