mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
58 lines
1.4 KiB
Text
58 lines
1.4 KiB
Text
# Maintainer: Daniel Sabogal <dsabogalcc@gmail.com>
|
|
pkgname=openmpi
|
|
pkgver=4.1.5
|
|
pkgrel=0
|
|
pkgdesc="Message passing library for high-performance computing"
|
|
url="https://www.open-mpi.org/"
|
|
arch="all"
|
|
license="custom" # BSD-based custom license
|
|
makedepends="perl gfortran hwloc-dev libevent-dev libgomp"
|
|
subpackages="$pkgname-dev:_dev $pkgname-libs $pkgname-doc"
|
|
source="https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/openmpi-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
local disable_atomics=""
|
|
case "$CARCH" in
|
|
ppc64le) disable_atomics="--disable-builtin-atomics";;
|
|
esac
|
|
|
|
CFLAGS="$CFLAGS -O2 -flto=auto" \
|
|
CXXFLAGS="$CXXFLAGS -O2 -flto=auto" \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--sysconfdir=/etc/$pkgname \
|
|
--enable-ipv6 \
|
|
--with-threads=posix \
|
|
--with-hwloc=/usr \
|
|
--disable-static \
|
|
$disable_atomics
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
# apk doesn't accept this version
|
|
sed -i "s|rc1||" "$pkgdir"/usr/lib/pkgconfig/pmix.pc
|
|
}
|
|
|
|
_dev() {
|
|
default_dev
|
|
|
|
local bins="mpiCC mpic++ mpicc mpicxx mpif77 mpif90 mpifort
|
|
ortecc opal_wrapper"
|
|
|
|
local i; for i in $bins; do
|
|
amove usr/bin/$i
|
|
done
|
|
}
|
|
|
|
sha512sums="
|
|
7a2188684ed7542fe42e1717ae72cb859b4f3d6f722c9d3ba04bfed6c2178b3e7da3a536629d312c23571fed4d9b2ca5e20e85898ae5144e9332bd898e6e1cc6 openmpi-4.1.5.tar.bz2
|
|
"
|