Files
MX_Pmodule/scripts/System/fsstress/build
Achim Gsell bc9e63799e build-blocks:
- use modbuild in shebang
- refactore function calls
2015-09-21 16:42:39 +02:00

23 lines
363 B
Plaintext
Executable File

#!/usr/bin/env modbuild
pbuild::configure() {
:
}
pbuild::build() {
cd "${MODULE_SRCDIR}"
make -j ${JOBS}
}
pbuild::install() {
cd "${MODULE_SRCDIR}"
mkdir -p ${PREFIX}/bin
install -m 0755 fsstress "${PREFIX}/bin"
}
#pbuild::supported_os 'Linux'
pbuild::add_to_group 'System'
pbuild::set_build_dependencies "${COMPILER}"
pbuild::make_all