21 lines
510 B
Plaintext
Executable File
21 lines
510 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "http://www.mpich.org/static/downloads/$V/$P-${V_PKG}.tar.gz"
|
|
|
|
pbuild::add_to_group 'Compiler'
|
|
|
|
module use System
|
|
|
|
pbuild::pre_configure() {
|
|
unset F90
|
|
pbuild::add_configure_args "--enable-cxx"
|
|
pbuild::add_configure_args "--enable-fortran"
|
|
if pbuild::use_flag merlin; then
|
|
pbuild::add_configure_args "--with-device=ch3:nemesis:mxm"
|
|
pbuild::add_configure_args "--with-mxm=${MXM_DIR}"
|
|
fi
|
|
}
|
|
|
|
pbuild::install_docfiles 'COPYRIGHT' 'README'
|
|
pbuild::make_all
|