void-packages/xbps-src/helpers/cmake.sh

12 lines
301 B
Bash
Raw Normal View History

2011-10-24 13:08:06 +00:00
#
# This helper is for templates using cmake.
#
do_configure() {
[ -z "$configure_script" ] && configure_script=cmake
${configure_script} -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release ${configure_args}
}
# cmake scripts use make(1) to build/install.
. $XBPS_HELPERSDIR/gnu-makefile.sh