Also standardize the MotionCor2 wrapper so that it's the same for all module versions regardless of cuda support
24 lines
309 B
Plaintext
Executable File
24 lines
309 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
# Binary distribution with manual installation. See README.md
|
|
|
|
pbuild::add_to_group 'EM'
|
|
|
|
pbuild::prep() {
|
|
:
|
|
}
|
|
|
|
pbuild::configure() {
|
|
:
|
|
}
|
|
|
|
pbuild::compile() {
|
|
:
|
|
}
|
|
|
|
pbuild::install() {
|
|
cp $BUILDBLOCK_DIR/files/LICENSE $PREFIX/
|
|
cp -r $BUILDBLOCK_DIR/bin $PREFIX/
|
|
}
|
|
|