mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
Added extra/openmpi
This commit is contained in:
parent
e76e588182
commit
2d09a69d21
1 changed files with 58 additions and 0 deletions
58
extra/openmpi/PKGBUILD
Normal file
58
extra/openmpi/PKGBUILD
Normal file
|
@ -0,0 +1,58 @@
|
|||
# $Id: PKGBUILD 111958 2011-03-02 17:12:01Z stephane $
|
||||
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
|
||||
|
||||
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
||||
# - removed dependency on valgrind (not supported on ARM)
|
||||
|
||||
plugre=1
|
||||
|
||||
pkgname=openmpi
|
||||
pkgver=1.5.1
|
||||
pkgrel=1
|
||||
pkgdesc="High performance message passing library (MPI)"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.open-mpi.org"
|
||||
license=('custom')
|
||||
depends=('gcc' 'gcc-fortran' 'openssh' 'libtool')
|
||||
options=(!libtool)
|
||||
source=(http://www.open-mpi.org/software/ompi/v1.5/downloads/${pkgname}-${pkgver}.tar.bz2)
|
||||
sha1sums=('fe21acc211fe60e30dc6bef1c83a70c34e093998')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc/${pkgname} \
|
||||
--mandir=/usr/share/man \
|
||||
--enable-mpi-f90 \
|
||||
--libdir=/usr/lib/${pkgname} \
|
||||
--with-threads=posix \
|
||||
--enable-mpi-threads \
|
||||
--enable-smp-locks \
|
||||
--enable-pretty-print-stacktrace \
|
||||
--without-slurm \
|
||||
--with-libltdl=/usr \
|
||||
FC=/usr/bin/gfortran \
|
||||
LDFLAGS='-Wl,-z,noexecstack'
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
# Openmpi's otfinfo conflicts with the one from texlive
|
||||
mv ${pkgdir}/usr/bin/otfinfo ${pkgdir}/usr/bin/otfinfompi
|
||||
|
||||
# Openmpi's otfdump conflicts with the one from libotf
|
||||
mv ${pkgdir}/usr/bin/otfdump ${pkgdir}/usr/bin/otfdumpompi
|
||||
|
||||
# Symlink points to non-existing ortec++.1
|
||||
rm ${pkgdir}/usr/share/man/man1/orteCC.1
|
||||
|
||||
install -d -m 755 ${pkgdir}/etc/ld.so.conf.d
|
||||
echo "/usr/lib/${pkgname}" > ${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf
|
||||
|
||||
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
Loading…
Reference in a new issue