mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/openmpi to 2.1.1-2
This commit is contained in:
parent
f94ad3a0c7
commit
7f6411c857
1 changed files with 48 additions and 47 deletions
|
@ -1,5 +1,5 @@
|
||||||
# $Id$
|
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
||||||
# Maintainer: Anatol Pomozov <anatol dot pomozov at gmail>
|
# Contributor: Anatol Pomozov <anatol dot pomozov at gmail>
|
||||||
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
||||||
|
|
||||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org
|
||||||
|
@ -7,64 +7,65 @@
|
||||||
|
|
||||||
pkgname=openmpi
|
pkgname=openmpi
|
||||||
pkgver=2.1.1
|
pkgver=2.1.1
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc='High performance message passing library (MPI)'
|
pkgdesc='High performance message passing library (MPI)'
|
||||||
arch=(i686 x86_64)
|
url='https://www.open-mpi.org'
|
||||||
url='http://www.open-mpi.org'
|
arch=('i686' 'x86_64')
|
||||||
license=(custom)
|
license=('custom:OpenMPI')
|
||||||
depends=(libltdl hwloc)
|
depends=('libltdl' 'hwloc' 'openssh')
|
||||||
makedepends=(inetutils gcc-fortran)
|
makedepends=('inetutils' 'gcc-fortran')
|
||||||
makedepends_armv7h=(valgrind)
|
makedepends_armv7h=('valgrind')
|
||||||
makedepends_aarch64=(valgrind)
|
makedepends_aarch64=('valgrind')
|
||||||
optdepends=('gcc-fortran: fortran support')
|
optdepends=('gcc-fortran: fortran support')
|
||||||
options=(staticlibs)
|
options=('staticlibs')
|
||||||
source=(http://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
|
source=(https://www.open-mpi.org/software/ompi/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
|
||||||
sha1sums=('3aaee35c17b6ef02f4cee274f2670d5b7b2c968a')
|
sha256sums=('bd7badd4ff3afa448c0d7f3ca0ee6ce003b957e9954aa87d8e4435759b5e4d16')
|
||||||
|
sha512sums=('c11bba6ec815f9c8d32fce3578f8995f6cd694e02fb850d7e6cd3975989bb38fdbef348064264a1de418d0a21411c70ca74347ecff4f27eb5a2f6835019d6bca')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $pkgname-$pkgver
|
cd ${pkgname}-${pkgver}
|
||||||
|
|
||||||
# enable valgrind and memchecker for v7
|
# enable valgrind and memchecker for v7/v8
|
||||||
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CONFIG='--with-valgrind --enable-memchecker'
|
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CONFIG='--with-valgrind --enable-memchecker'
|
||||||
|
|
||||||
./configure --prefix=/usr \
|
./configure --prefix=/usr \
|
||||||
--sysconfdir=/etc/${pkgname} \
|
--sysconfdir=/etc/${pkgname} \
|
||||||
--enable-mpi-fortran=all \
|
--enable-mpi-fortran=all \
|
||||||
--libdir=/usr/lib/${pkgname} \
|
--libdir=/usr/lib/${pkgname} \
|
||||||
--with-threads=posix \
|
--with-threads=posix \
|
||||||
--enable-mpi-thread-multiple \
|
--enable-mpi-thread-multiple \
|
||||||
--enable-smp-locks \
|
--enable-smp-locks \
|
||||||
--enable-builtin-atomics \
|
--enable-builtin-atomics \
|
||||||
--enable-mpi-cxx \
|
--enable-mpi-cxx \
|
||||||
--enable-pretty-print-stacktrace \
|
--with-valgrind \
|
||||||
--without-slurm \
|
--enable-memchecker \
|
||||||
--with-hwloc=/usr \
|
--enable-pretty-print-stacktrace \
|
||||||
--with-libltdl=/usr \
|
--without-slurm \
|
||||||
FC=/usr/bin/gfortran \
|
--with-hwloc=/usr \
|
||||||
LDFLAGS="$LDFLAGS -Wl,-z,noexecstack" \
|
--with-libltdl=/usr \
|
||||||
$CONFIG
|
FC=/usr/bin/gfortran \
|
||||||
|
LDFLAGS="${LDFLAGS} -Wl,-z,noexecstack"
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
cd $pkgname-$pkgver
|
cd ${pkgname}-${pkgver}
|
||||||
|
make check
|
||||||
make check
|
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd $pkgname-$pkgver
|
cd ${pkgname}-${pkgver}
|
||||||
make DESTDIR="$pkgdir" install
|
make DESTDIR="${pkgdir}" install
|
||||||
|
|
||||||
# FS#28583
|
# FS#28583
|
||||||
install -d -m 755 "$pkgdir"/usr/lib/pkgconfig
|
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
|
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/
|
ln -sf "/usr/lib/openmpi/pkgconfig/${i}" "${pkgdir}/usr/lib/pkgconfig/"
|
||||||
done
|
done
|
||||||
|
|
||||||
install -d -m 755 "$pkgdir"/etc/ld.so.conf.d
|
install -dm 755 "${pkgdir}/etc/ld.so.conf.d"
|
||||||
echo "/usr/lib/$pkgname" > "$pkgdir"/etc/ld.so.conf.d/$pkgname.conf
|
echo "/usr/lib/${pkgname}" > "${pkgdir}"/etc/ld.so.conf.d/${pkgname}.conf
|
||||||
|
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||||
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# vim: ts=2 sw=2 et:
|
||||||
|
|
Loading…
Reference in a new issue