Files
MX_Pmodule/System/fsstress/build
2018-10-11 23:08:23 +02:00

25 lines
377 B
Plaintext
Executable File

#!/usr/bin/env modbuild
# :FIXME: needs review
pbuild::configure() {
:
}
pbuild::compile() {
cd "${SRC_DIR}"
make -j ${JOBS}
}
pbuild::install() {
cd "${SRC_DIR}"
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