diff options
Diffstat (limited to 'meta-oe/recipes-devtools/mpich/mpich_3.2.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/mpich/mpich_3.2.bb | 42 |
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 @@ | |||
| 1 | SUMMARY = "Message Passing Interface (MPI) implementation" | ||
| 2 | HOMEPAGE = "http://www.mpich.org/" | ||
| 3 | SECTION = "devel" | ||
| 4 | |||
| 5 | LICENSE = "BSD-2-Clause" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2106f0435056f3dd9349747a766e5816" | ||
| 7 | |||
| 8 | SRC_URI = " \ | ||
| 9 | http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz \ | ||
| 10 | " | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "f414cfa77099cd1fa1a5ae4e22db508a" | ||
| 13 | SRC_URI[sha256sum] = "0778679a6b693d7b7caff37ff9d2856dc2bfc51318bf8373859bfa74253da3dc" | ||
| 14 | |||
| 15 | CACHED_CONFIGUREVARS += "BASH_SHELL=${base_bindir}/bash" | ||
| 16 | |||
| 17 | RDEPENDS_${PN} += "bash perl libxml2" | ||
| 18 | S = "${WORKDIR}/${BP}" | ||
| 19 | |||
| 20 | EXTRA_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 | |||
| 31 | inherit autotools-brokensep gettext | ||
| 32 | |||
| 33 | do_configure_prepend() { | ||
| 34 | autoreconf --verbose --install --force -I . -I confdb/ -I maint/ | ||
| 35 | oe_runconf | ||
| 36 | exit | ||
| 37 | } | ||
| 38 | |||
| 39 | do_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 | } | ||
