2017-09-13 19:28:17 +00:00
|
|
|
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
|
|
# Contributor: Anatol Pomozov <anatol dot pomozov at gmail>
|
2014-09-19 19:29:48 +00:00
|
|
|
# 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
|
2018-01-06 20:24:36 +00:00
|
|
|
pkgver=3.0.0
|
|
|
|
pkgrel=1
|
2014-09-19 19:29:48 +00:00
|
|
|
pkgdesc='High performance message passing library (MPI)'
|
2017-09-13 19:28:17 +00:00
|
|
|
url='https://www.open-mpi.org'
|
2018-01-06 20:24:36 +00:00
|
|
|
arch=('x86_64')
|
2017-09-13 19:28:17 +00:00
|
|
|
license=('custom:OpenMPI')
|
|
|
|
depends=('libltdl' 'hwloc' 'openssh')
|
|
|
|
makedepends=('inetutils' 'gcc-fortran')
|
|
|
|
makedepends_armv7h=('valgrind')
|
|
|
|
makedepends_aarch64=('valgrind')
|
2014-09-19 19:29:48 +00:00
|
|
|
optdepends=('gcc-fortran: fortran support')
|
2017-09-13 19:28:17 +00:00
|
|
|
options=('staticlibs')
|
|
|
|
source=(https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
|
2018-01-06 20:24:36 +00:00
|
|
|
sha256sums=('f699bff21db0125d8cccfe79518b77641cd83628725a1e1ed3e45633496a82d7')
|
|
|
|
sha512sums=('7e37eacf959a803d6d89dff4291b64a1f3d83bc7941b778a2fb13d12be0f205cb904e4a807d79676ad1e31fd99ffb15f255c8a227e830673455abb144f14616a')
|
2014-09-19 19:29:48 +00:00
|
|
|
|
2014-09-29 15:51:13 +00:00
|
|
|
build() {
|
2017-09-13 19:28:17 +00:00
|
|
|
cd ${pkgname}-${pkgver}
|
2014-09-19 19:29:48 +00:00
|
|
|
|
2017-09-13 19:28:17 +00:00
|
|
|
# enable valgrind and memchecker for v7/v8
|
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
|
|
|
|
2017-09-13 19:28:17 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc/${pkgname} \
|
|
|
|
--enable-mpi-fortran=all \
|
|
|
|
--libdir=/usr/lib/${pkgname} \
|
|
|
|
--with-threads=posix \
|
|
|
|
--enable-mpi-thread-multiple \
|
|
|
|
--enable-smp-locks \
|
|
|
|
--enable-builtin-atomics \
|
|
|
|
--enable-mpi-cxx \
|
|
|
|
--enable-pretty-print-stacktrace \
|
|
|
|
--without-slurm \
|
|
|
|
--with-hwloc=/usr \
|
|
|
|
--with-libltdl=/usr \
|
|
|
|
FC=/usr/bin/gfortran \
|
2017-09-14 00:28:46 +00:00
|
|
|
LDFLAGS="${LDFLAGS} -Wl,-z,noexecstack" \
|
|
|
|
$CONFIG
|
2017-09-13 19:28:17 +00:00
|
|
|
make
|
2014-09-19 19:29:48 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 15:51:13 +00:00
|
|
|
check() {
|
2017-09-13 19:28:17 +00:00
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make check
|
2014-09-29 15:51:13 +00:00
|
|
|
}
|
|
|
|
|
2014-09-19 19:29:48 +00:00
|
|
|
package() {
|
2017-09-13 19:28:17 +00:00
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2014-09-19 19:29:48 +00:00
|
|
|
|
2017-09-13 19:28:17 +00:00
|
|
|
# FS#28583
|
|
|
|
install -dm 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
|
2014-09-19 19:29:48 +00:00
|
|
|
|
2017-09-13 19:28:17 +00:00
|
|
|
install -dm 755 "${pkgdir}/etc/ld.so.conf.d"
|
|
|
|
echo "/usr/lib/${pkgname}" > "${pkgdir}"/etc/ld.so.conf.d/${pkgname}.conf
|
|
|
|
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
2014-09-19 19:29:48 +00:00
|
|
|
}
|
2017-09-13 19:28:17 +00:00
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et:
|