summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Smedstad2023-08-07 19:39:03 +0200
committerCarl Smedstad2023-08-07 19:58:12 +0200
commitabff8fc4abf5de1c4381314ff73f430b26cdadb3 (patch)
tree086efd1bf37804f75d4bb6904f39e84e4777c300
parent2ab233cb048bef501e0d405e1a6195c4ccf63362 (diff)
downloadaur-abff8fc4abf5de1c4381314ff73f430b26cdadb3.tar.gz
Publish version 0.0.1-2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD17
2 files changed, 15 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 19e0f6ae15a2..99c7d018084b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,13 @@
pkgbase = liboakleaf
pkgdesc = Library which implements robust statistical estimates
pkgver = 0.0.1
- pkgrel = 1
+ pkgrel = 2
url = http://integral.physics.muni.cz/oakleaf
arch = x86_64
license = LGPL3
makedepends = gcc-fortran
+ depends = gcc-libs
+ depends = glibc
depends = libminpack
source = ftp://integral.physics.muni.cz/pub/oakleaf/oakleaf-0.0.1.tar.gz
sha256sums = 2bda78abeb483a48adfac6955aa73232a86f678549c2a84df8b7f05f314757c6
diff --git a/PKGBUILD b/PKGBUILD
index 19e6e3e3c9a7..ed6d3e402e2a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,15 +2,19 @@
pkgname=liboakleaf
pkgver=0.0.1
-pkgrel=1
+pkgrel=2
pkgdesc="Library which implements robust statistical estimates"
arch=(x86_64)
url="http://integral.physics.muni.cz/oakleaf"
license=(LGPL3)
-depends=(libminpack)
+depends=(
+ gcc-libs
+ glibc
+ libminpack
+)
makedepends=(gcc-fortran)
-source=(ftp://integral.physics.muni.cz/pub/oakleaf/oakleaf-$pkgver.tar.gz)
+source=("ftp://integral.physics.muni.cz/pub/oakleaf/oakleaf-$pkgver.tar.gz")
sha256sums=('2bda78abeb483a48adfac6955aa73232a86f678549c2a84df8b7f05f314757c6')
_archive="oakleaf-$pkgver"
@@ -19,13 +23,16 @@ build() {
cd "$_archive"
./configure --prefix=/usr --libexecdir=/usr/lib
- make
+
+ # Parallel compilation fails
+ MAKEFLAGS="-j1" make
}
check() {
cd "$_archive"
- make -k check
+ # Parallel compilation fails
+ MAKEFLAGS="-j1" make -k check
}
package() {