mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
127 lines
3.1 KiB
Bash
127 lines
3.1 KiB
Bash
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
# Maintainer: David Runge <dvzrv@archlinux.org>
|
|
# Contributor: Anatol Pomozov <anatol dot pomozov at gmail>
|
|
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org
|
|
# - remove make/optdepend on cuda and configure option
|
|
|
|
pkgbase=openmpi
|
|
pkgname=(
|
|
openmpi
|
|
openmpi-docs
|
|
)
|
|
pkgver=5.0.1
|
|
pkgrel=2
|
|
pkgdesc='High performance message passing library (MPI)'
|
|
arch=(x86_64)
|
|
url='https://www.open-mpi.org'
|
|
license=('BSD-3-Clause AND LicenseRef-MPICH')
|
|
makedepends=(
|
|
gcc-fortran
|
|
gcc-libs
|
|
glibc
|
|
hwloc
|
|
libevent
|
|
libnl
|
|
openpmix libpmix.so
|
|
openssh
|
|
prrte
|
|
valgrind
|
|
zlib
|
|
)
|
|
source=(
|
|
https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/$pkgbase-$pkgver.tar.bz2)
|
|
sha256sums=('e357043e65fd1b956a47d0dae6156a90cf0e378df759364936c1781f1a25ef80')
|
|
b2sums=('4a5b1d6c1cb2c81186f1d1347aee2e78b8634e0db08053a99a10d54df31d2afa5982d64b49a351aea99fc9db64f8ab81adeab9ae427442892774f99de3602230')
|
|
|
|
_pick() {
|
|
local p="$1" f d; shift
|
|
for f; do
|
|
d="$srcdir/$p/${f#$pkgdir/}"
|
|
mkdir -p "$(dirname "$d")"
|
|
mv "$f" "$d"
|
|
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
|
|
done
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgbase-$pkgver
|
|
# workaround for https://github.com/open-mpi/ompi/issues/12257
|
|
sed -i 's|WRAPPER__FCFLAGS|WRAPPER_FCFLAGS|g' configure
|
|
sed -i 's|WRAPPER_EXTRA_FCFLAGS|WRAPPER_FCFLAGS|g' configure
|
|
sed -i 's|"-I/usr/include",||' opal/tools/wrappers/opal_wrapper.c
|
|
}
|
|
|
|
build() {
|
|
local configure_options=(
|
|
--prefix=/usr
|
|
--enable-builtin-atomics
|
|
--enable-memchecker
|
|
--enable-mpi-fortran=all
|
|
--enable-pretty-print-stacktrace
|
|
--libdir=/usr/lib
|
|
--sysconfdir=/etc/$pkgbase
|
|
--with-hwloc=external
|
|
--with-libevent=external
|
|
--with-pmix=external
|
|
--with-prrte=external
|
|
--with-valgrind
|
|
)
|
|
cd $pkgbase-$pkgver
|
|
|
|
# set environment variables for reproducible build
|
|
# see https://github.com/open-mpi/ompi/blob/main/docs/release-notes/general.rst
|
|
export HOSTNAME=buildhost
|
|
export USER=builduser
|
|
|
|
# TODO: remove ac_cv_func_sem_open=no when there is a glibc release fixing https://sourceware.org/bugzilla/show_bug.cgi?id=30789
|
|
ac_cv_func_sem_open=no ./configure "${configure_options[@]}"
|
|
# prevent excessive overlinking due to libtool
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make V=1
|
|
}
|
|
|
|
check() {
|
|
make check -C $pkgbase-$pkgver
|
|
}
|
|
|
|
package_openmpi() {
|
|
depends=(
|
|
gcc-libs
|
|
glibc
|
|
hwloc
|
|
libevent
|
|
libnl
|
|
openpmix libpmix.so
|
|
openssh
|
|
prrte
|
|
zlib
|
|
)
|
|
optdepends=(
|
|
'gcc-fortran: fortran support'
|
|
)
|
|
provides=(
|
|
libmpi.so
|
|
libmpi_mpifh.so
|
|
libmpi_usempi_ignore_tkr.so
|
|
libmpi_usempif08.so
|
|
libopen-pal.so
|
|
)
|
|
|
|
make DESTDIR="$pkgdir" install -C $pkgbase-$pkgver
|
|
(
|
|
cd "$pkgdir"
|
|
_pick $pkgbase-docs usr/share/doc
|
|
)
|
|
install -Dm 644 $pkgbase-$pkgver/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
|
|
}
|
|
|
|
package_openmpi-docs() {
|
|
pkgdesc+=" - documentation"
|
|
|
|
mv -v $pkgname/* "$pkgdir/"
|
|
install -vDm 644 $pkgbase-$pkgver/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|