2014-09-19 19:29:48 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Anatol Pomozov <anatol dot pomozov at gmail>
|
|
|
|
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org
|
2015-10-27 04:16:37 +00:00
|
|
|
# - only use valgrind with v7/v8
|
2014-09-19 19:29:48 +00:00
|
|
|
|
|
|
|
pkgname=openmpi
|
2017-06-20 05:00:42 +00:00
|
|
|
pkgver=2.1.1
|
|
|
|
pkgrel=1
|
2014-09-19 19:29:48 +00:00
|
|
|
pkgdesc='High performance message passing library (MPI)'
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
url='http://www.open-mpi.org'
|
|
|
|
license=(custom)
|
|
|
|
depends=(libltdl hwloc)
|
|
|
|
makedepends=(inetutils gcc-fortran)
|
2015-06-23 02:35:19 +00:00
|
|
|
makedepends_armv7h=(valgrind)
|
2015-10-27 04:16:37 +00:00
|
|
|
makedepends_aarch64=(valgrind)
|
2014-09-19 19:29:48 +00:00
|
|
|
optdepends=('gcc-fortran: fortran support')
|
|
|
|
options=(staticlibs)
|
2015-08-29 17:59:17 +00:00
|
|
|
source=(http://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
|
2017-06-20 05:00:42 +00:00
|
|
|
sha1sums=('3aaee35c17b6ef02f4cee274f2670d5b7b2c968a')
|
2014-09-19 19:29:48 +00:00
|
|
|
|
2014-09-29 15:51:13 +00:00
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
2014-09-19 19:29:48 +00:00
|
|
|
|
|
|
|
# enable valgrind and memchecker for v7
|
2015-10-27 04:16:37 +00:00
|
|
|
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CONFIG='--with-valgrind --enable-memchecker'
|
2014-09-19 19:29:48 +00:00
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc/${pkgname} \
|
2015-04-30 21:30:37 +00:00
|
|
|
--enable-mpi-fortran=all \
|
2014-09-19 19:29:48 +00:00
|
|
|
--libdir=/usr/lib/${pkgname} \
|
|
|
|
--with-threads=posix \
|
2017-06-20 05:00:42 +00:00
|
|
|
--enable-mpi-thread-multiple \
|
2014-09-19 19:29:48 +00:00
|
|
|
--enable-smp-locks \
|
2017-06-20 05:00:42 +00:00
|
|
|
--enable-builtin-atomics \
|
|
|
|
--enable-mpi-cxx \
|
2014-09-19 19:29:48 +00:00
|
|
|
--enable-pretty-print-stacktrace \
|
|
|
|
--without-slurm \
|
|
|
|
--with-hwloc=/usr \
|
|
|
|
--with-libltdl=/usr \
|
|
|
|
FC=/usr/bin/gfortran \
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,-z,noexecstack" \
|
|
|
|
$CONFIG
|
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2014-09-29 15:51:13 +00:00
|
|
|
check() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
|
|
|
make check
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:29:48 +00:00
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
# FS#28583
|
|
|
|
install -d -m 755 "$pkgdir"/usr/lib/pkgconfig
|
|
|
|
for i in ompi-c.pc ompi-cxx.pc ompi-f77.pc ompi-f90.pc ompi.pc; do
|
|
|
|
ln -sf /usr/lib/openmpi/pkgconfig/$i "$pkgdir"/usr/lib/pkgconfig/
|
|
|
|
done
|
|
|
|
|
|
|
|
install -d -m 755 "$pkgdir"/etc/ld.so.conf.d
|
|
|
|
echo "/usr/lib/$pkgname" > "$pkgdir"/etc/ld.so.conf.d/$pkgname.conf
|
|
|
|
|
|
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
}
|