mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
58 lines
1.8 KiB
Bash
58 lines
1.8 KiB
Bash
# $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)
|
|
|
|
plugrel=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"
|
|
}
|