2017-11-22 19:38:47 +01:00
TERMUX_PKG_HOMEPAGE = https://www.open-mpi.org
TERMUX_PKG_DESCRIPTION = "The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners"
2019-01-26 00:10:08 +01:00
TERMUX_PKG_LICENSE = "BSD 3-Clause"
2017-11-22 19:38:47 +01:00
TERMUX_PKG_MAINTAINER = "Henrik Grimler @Grimler91"
2020-03-23 11:53:04 +01:00
TERMUX_PKG_VERSION = 4.0.3
2018-09-13 22:11:30 +02:00
TERMUX_PKG_SRCURL = https://download.open-mpi.org/release/open-mpi/v${ TERMUX_PKG_VERSION : 0 : 3 } /openmpi-$TERMUX_PKG_VERSION .tar.gz
2020-03-23 11:53:04 +01:00
TERMUX_PKG_SHA256 = 6346bf976001ad274c7e018d6cc35c92bbb9426d8f7754fac00a17ea5ac8eebc
2019-10-25 16:31:50 +02:00
TERMUX_PKG_DEPENDS = "libandroid-shmem"
2019-07-31 22:01:58 +02:00
TERMUX_PKG_BREAKS = "openmpi-dev"
TERMUX_PKG_REPLACES = "openmpi-dev"
2019-02-03 15:25:47 +01:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS = "
--without-x
2018-09-13 22:11:30 +02:00
--disable-dlopen
--disable-mpi-fortran
2019-10-25 16:31:50 +02:00
ac_cv_header_ifaddrs_h = no
2018-10-23 21:37:28 +02:00
ac_cv_member_struct_ifreq_ifr_hwaddr = no
2018-09-13 22:11:30 +02:00
"
2017-11-22 19:38:47 +01:00
termux_step_pre_configure ( ) {
# rindex is an obsolete version of strrchr which is not available in Android:
2018-09-13 22:11:30 +02:00
CFLAGS += " -Drindex=strrchr -Dbcmp=memcmp"
2020-01-11 10:23:09 +01:00
LDFLAGS += " -landroid-shmem"
2018-09-14 08:02:22 +02:00
if [ $TERMUX_ARCH = = "i686" ] ; then
# fails with "undefined reference to __atomic..."
LDFLAGS += " -latomic"
fi
2017-11-22 19:38:47 +01:00
}