PKGBUILDs/extra/openmpi/PKGBUILD

73 lines
2.3 KiB
Bash
Raw Normal View History

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
2021-03-21 17:16:27 +00:00
# - remove make/optdepend on cude and configure option
2021-06-09 00:51:42 +00:00
# - explicitly link v5 with libatomic
2014-09-19 19:29:48 +00:00
pkgname=openmpi
2021-06-07 18:22:40 +00:00
pkgver=4.1.1
2021-11-01 13:52:52 +00:00
pkgrel=3
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')
2021-03-21 17:16:27 +00:00
depends=('glibc' 'libltdl' 'hwloc' 'openssh' 'zlib' 'libnl' 'perl' 'libevent')
2017-09-13 19:28:17 +00:00
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')
2020-03-07 19:24:16 +00:00
source=(https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
2021-06-07 18:22:40 +00:00
sha256sums=('e24f7a778bd11a71ad0c14587a7f5b00e68a71aa5623e2157bafee3d44c07cda')
b2sums=('2f853ca44703197469e5ccd42ecd81de72d39f265e0da9d847e6b2f7a7646241b76346c71969bf6a3d4605c28f02de6b587fd0330c753ad7dec8503af0784b69')
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'
2021-06-09 00:51:42 +00:00
[[ $CARCH == "arm" ]] && LDFLAGS+=" -Wl,--no-as-needed -latomic -Wl,--as-needed"
2014-09-19 19:29:48 +00:00
2021-03-21 17:16:27 +00:00
./configure \
--prefix=/usr \
2017-09-13 19:28:17 +00:00
--sysconfdir=/etc/${pkgname} \
--enable-mpi-fortran=all \
--libdir=/usr/lib/${pkgname} \
--enable-builtin-atomics \
--enable-mpi-cxx \
--enable-pretty-print-stacktrace \
--without-slurm \
--with-hwloc=/usr \
--with-libltdl=/usr \
2021-03-21 17:16:27 +00:00
--with-libevent=/usr \
2017-09-13 19:28:17 +00:00
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"
2021-06-12 02:02:29 +00:00
for i in "${pkgdir}/usr/lib/openmpi/pkgconfig/"*.pc; do
ln -sf "/usr/lib/openmpi/pkgconfig/$(basename ${i})" "${pkgdir}/usr/lib/pkgconfig/"
2017-09-13 19:28:17 +00:00
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: