summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoan Bruguera2019-03-22 17:32:34 +0100
committerJoan Bruguera2019-03-22 17:32:34 +0100
commita56ee8c99de7c213e313e56597becc25d778f3cc (patch)
treef29ab08d89b57b8aaf10a93fb6d3b453335ef35e
parent46c4ecb1bfa2d240a1201ac7692956738864c9ce (diff)
downloadaur-a56ee8c99de7c213e313e56597becc25d778f3cc.tar.gz
Lint and uniformize BSC package files.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e82c12ffe241..587cdc5a8b08 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = libbsctools
pkgdesc = Common library used by some BSC tools such as folding (from BSC).
pkgver = 1.0.5
- pkgrel = 3
+ pkgrel = 4
url = https://www.bsc.es/discover-bsc/organisation/scientific-structure/performance-tools
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 7ffc318c4163..108350458ef9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='libbsctools'
pkgdesc='Common library used by some BSC tools such as folding (from BSC).'
pkgver='1.0.5'
-pkgrel='3'
+pkgrel='4'
arch=('i686' 'x86_64')
url='https://www.bsc.es/discover-bsc/organisation/scientific-structure/performance-tools'
license=('LGPLv2.1')
@@ -17,12 +17,14 @@ build() {
./configure \
--prefix=/usr
+
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
- # NB: using DESTDIR instead, does not work, also often fails with parallel install
+ # WORKAROUND: Often fails with parallel install, so force make to run sequentially
+ # WORKAROUND: Specifying the install directory using DESTDIR does not work
make prefix="$pkgdir/usr/" install -j1
} \ No newline at end of file