24 lines
388 B
Plaintext
Executable File
24 lines
388 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "https://github.com/QEF/q-e/archive/$P-$V.tar.gz"
|
|
|
|
pbuild::add_to_group 'MPI'
|
|
|
|
pbuild::install_docfiles License README.md CONTRIBUTING.md
|
|
|
|
pbuild::compile_in_sourcetree
|
|
|
|
pbuild::pre_configure() {
|
|
pbuild::add_configure_args "-enable-openmp"
|
|
}
|
|
|
|
pbuild::compile() {
|
|
make all
|
|
make install
|
|
}
|
|
|
|
pbuild::install() {
|
|
:
|
|
}
|
|
|