20 lines
400 B
Plaintext
Executable File
20 lines
400 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "https://github.com/hpc/ior/archive/${V_PKG}.tar.gz"
|
|
|
|
pbuild::add_to_group 'System'
|
|
|
|
pbuild::install_docfiles AUTHORS NEWS README_S3
|
|
|
|
cd ${SRC_DIR}
|
|
|
|
# pbuild::compile_in_sourcetree
|
|
pbuild::pre_configure() {
|
|
pbuild::add_configure_args "LIBS=/tmp/libgpfs.so"
|
|
cd ${SRC_DIR}
|
|
./bootstrap
|
|
}
|
|
pbuild::configure() {
|
|
./configure LIBS=/tmp/libgpfs.so
|
|
}
|