summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb b/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb
new file mode 100644
index 0000000000..2f4226ea9e
--- /dev/null
+++ b/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb
@@ -0,0 +1,29 @@
1SUMMARY = "Message Passing Interface(MPI) implementation"
2HOMEPAGE = "http://git.mpich.org/mpich.git/"
3SECTION = "devel"
4
5LICENSE = "BSD-2-Clause"
6LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2106f0435056f3dd9349747a766e5816"
7
8SRC_URI = "http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz"
9SRC_URI[md5sum] = "40dc408b1e03cc36d80209baaa2d32b7"
10SRC_URI[sha256sum] = "455ccfaf4ec724d2cf5d8bff1f3d26a958ad196121e7ea26504fd3018757652d"
11
12RDEPENDS_${PN} += "bash perl tcsh"
13S = "${WORKDIR}/${PN}-${PV}"
14
15EXTRA_OECONF = "--enable-debuginfo \
16 --enable-fast \
17 --enable-shared \
18 --disable-f77 \
19 --disable-fc \
20 --disable-fortran \
21 --disable-cxx"
22
23inherit autotools-brokensep gettext
24
25do_configure_prepend() {
26 autoreconf --verbose --install --force -I . -I confdb/ -I maint/
27 oe_runconf
28 exit
29}