21 lines
449 B
Plaintext
Executable File
21 lines
449 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::pre_configure() {
|
|
./autogen.sh
|
|
}
|
|
|
|
pbuild::configure() {
|
|
"${MODULE_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
--enable-h5hut \
|
|
--enable-hdf5 \
|
|
--enable-root \
|
|
--with-pic
|
|
}
|
|
|
|
pbuild::add_to_group 'Compiler'
|
|
pbuild::set_runtime_dependencies "${COMPILER}" 'hdf5_serial' 'root'
|
|
pbuild::set_build_dependencies 'autoconf' 'automake' 'libtool' "${COMPILER}" 'hdf5_serial' 'H5hut_serial' 'root'
|
|
pbuild::make_all
|
|
|