wok-current diff openmpi/receipt @ rev 25185
mplayer: added dependency ffmpeg
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jul 12 09:50:00 2022 +0100 (2022-07-12) |
parents | ad8b9ff412d2 |
children |
line diff
1.1 --- a/openmpi/receipt Sat Feb 12 18:42:31 2022 +0000 1.2 +++ b/openmpi/receipt Tue Jul 12 09:50:00 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="openmpi" 1.7 -VERSION="4.0.3" 1.8 +VERSION="4.1.3" 1.9 CATEGORY="development" 1.10 SHORT_DESC="High performance message passing library (MPI)." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -12,7 +12,7 @@ 1.13 WGET_URL="${WEB_SITE}software/ompi/v${VERSION%.*}/downloads/$TARBALL" 1.14 1.15 DEPENDS="gcc gfortran libtool openssh valgrind" 1.16 -BUILD_DEPENDS="$DEPENDS file valgrind-dev" 1.17 +BUILD_DEPENDS="$DEPENDS bash file valgrind-dev" 1.18 1.19 # What is the latest version available today? 1.20 current_version() 1.21 @@ -24,13 +24,20 @@ 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 + # bash is needed, because var+=val is not known to sh 1.26 + export SHELL=/bin/bash 1.27 + export CONFIG_SHELL=/bin/bash 1.28 + 1.29 + # 4.1.3 unrecognized options: 1.30 + # --enable-mpi-f90 1.31 + # --with-threads 1.32 + # --enable-mpi-threads 1.33 + # --enable-smp-locks 1.34 + 1.35 ./configure \ 1.36 --sysconfdir=/etc/${PACKAGE} \ 1.37 - --enable-mpi-f90 \ 1.38 --libdir=/usr/lib/${pkgname} \ 1.39 - --with-threads=posix \ 1.40 - --enable-mpi-threads \ 1.41 - --enable-smp-locks \ 1.42 + --enable-mpi-fortran \ 1.43 --with-valgrind \ 1.44 --enable-pretty-print-stacktrace \ 1.45 --without-slurm \