25 lines
642 B
Python
Executable File
25 lines
642 B
Python
Executable File
#!/usr/bin/env modbuild
|
|
|
|
# pbuild::set_download_url "https://github.com/hpc/ior/releases/download/${V_PKG}/$P-${V_PKG}.tar.gz"
|
|
# pbuild::set_download_url "https://github.com/hpc/ior/archive/${V_PKG}.zip"
|
|
pbuild::set_download_url "https://github.com/hpc/ior/archive/${V_PKG}.tar.gz"
|
|
|
|
pbuild::add_to_group 'Tools'
|
|
|
|
pbuild::install_docfiles AUTHORS COPYING NEWS README.md README_S3
|
|
|
|
cd ${SRC_DIR}
|
|
|
|
# pbuild::compile_in_sourcetree
|
|
pbuild::pre_configure() {
|
|
pbuild::add_configure_args "LIBS=/usr/lpp/mmfs/lib/libgpfs.so"
|
|
./bootstrap"
|
|
}
|
|
pbuild::configure() {
|
|
./configure LIBS=/usr/lpp/mmfs/lib/libgpfs.so"
|
|
}
|
|
|
|
pbuild::compile
|
|
|
|
pbuild::install
|