summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorEric Toombs2020-12-20 04:10:42 -0500
committerEric Toombs2020-12-20 04:10:42 -0500
commit9e39aa0ce5704e7ba8f73069898384edf225c5c4 (patch)
treefd50dc646fac32ffcc69d8f714cb70feedd63bcf /PKGBUILD
parent256c554abc1dd7f733de9e03be19672e6d6716d6 (diff)
downloadaur-armpl.tar.gz
Pipe data.tar.gz out of the .deb to avoid its creation as a temporary file.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 2 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 34c05c00b884..d16bf69a6ecd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='armpl'
pkgver='20.3'
-pkgrel='1'
+pkgrel='2'
pkgdesc='ARM'\''s closed-source high-performance numerical programming library. Includes BLAS, CBLAS, and LAPACK implementations.'
url='https://developer.arm.com/tools-and-software/server-and-hpc/downloads/arm-performance-libraries'
depends=()
@@ -18,9 +18,8 @@ sha256sums=('8fc078d78443894bdde71a49f7b39d513cf1f5e02db723eb833370d0cb2d635a')
package() {
cd "$srcdir/arm-performance-libraries_20.3_Ubuntu-16.04"
./arm-performance-libraries_20.3_Ubuntu-16.04.sh -a -f -s .
- bsdtar xvf 'armpl_20.3_gcc-9.3.deb'
cd "$pkgdir"
- tar xvf "$srcdir/arm-performance-libraries_20.3_Ubuntu-16.04/data.tar.gz"
+ bsdtar xOf "$srcdir/arm-performance-libraries_20.3_Ubuntu-16.04/armpl_20.3_gcc-9.3.deb" data.tar.gz | zcat | tar xv
install_lib_dir='/opt/arm/armpl_20.3_gcc-9.3/lib'