summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/mpich/mpich_3.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/mpich/mpich_3.2.bb')
-rw-r--r--meta-oe/recipes-devtools/mpich/mpich_3.2.bb42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/mpich/mpich_3.2.bb b/meta-oe/recipes-devtools/mpich/mpich_3.2.bb
new file mode 100644
index 0000000000..4537a66e04
--- /dev/null
+++ b/meta-oe/recipes-devtools/mpich/mpich_3.2.bb
@@ -0,0 +1,42 @@
1SUMMARY = "Message Passing Interface (MPI) implementation"
2HOMEPAGE = "http://www.mpich.org/"
3SECTION = "devel"
4
5LICENSE = "BSD-2-Clause"
6LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2106f0435056f3dd9349747a766e5816"
7
8SRC_URI = " \
9 http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz \
10"
11
12SRC_URI[md5sum] = "f414cfa77099cd1fa1a5ae4e22db508a"
13SRC_URI[sha256sum] = "0778679a6b693d7b7caff37ff9d2856dc2bfc51318bf8373859bfa74253da3dc"
14
15CACHED_CONFIGUREVARS += "BASH_SHELL=${base_bindir}/bash"
16
17RDEPENDS_${PN} += "bash perl libxml2"
18S = "${WORKDIR}/${BP}"
19
20EXTRA_OECONF = "--enable-debuginfo \
21 --enable-fast \
22 --enable-shared \
23 --with-pm=gforker \
24 --disable-rpath \
25 --disable-f77 \
26 --disable-fc \
27 --disable-fortran \
28 --disable-cxx \
29"
30
31inherit autotools-brokensep gettext
32
33do_configure_prepend() {
34 autoreconf --verbose --install --force -I . -I confdb/ -I maint/
35 oe_runconf
36 exit
37}
38
39do_install_append() {
40 sed -i 's,${S}/,,g' ${D}/${libdir}/libmpi.la
41 sed -i 's,${DEBUG_PREFIX_MAP},,g' ${D}/${libdir}/pkgconfig/mpich.pc
42}