summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorVincenzo Maffione2019-08-20 21:28:25 +0200
committerVincenzo Maffione2019-08-20 21:28:25 +0200
commitc034899cfcf098c7da50534525f3004aa9986f98 (patch)
tree1912da0c03d6ea3dd6a27e2916ad088a2deb4449 /PKGBUILD
parent816f617d76265a5163c7a71634874270aca20ef5 (diff)
downloadaur-c034899cfcf098c7da50534525f3004aa9986f98.tar.gz
add missing dependency and fix warning
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0568163184fe..802bc6640221 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,12 @@
pkgname=openucx
pkgver=1.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="Unified Communication X (http://www.openucx.org)"
arch=('any')
url="http://www.openucx.org"
license=('BSD')
-depends=('rdma-core')
+depends=('numactl' 'rdma-core')
makedepends=('git')
source=('git+https://github.com/openucx/ucx.git#tag=v1.4.0')
noextract=()
@@ -16,7 +16,7 @@ md5sums=('SKIP')
build() {
cd $srcdir/ucx
./autogen.sh
- ./contrib/configure-release --prefix=/usr
+ ./contrib/configure-release --prefix=/usr CFLAGS="-Wno-address-of-packed-member"
make
}