sysdig: use make explicitly

This commit is contained in:
John 2021-02-08 17:18:38 +01:00
parent 3024c79af6
commit d657032dbf
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ configure_args="-DSYSDIG_VERSION=${version} -DUSE_BUNDLED_DEPS=OFF
-DUSE_BUNDLED_B64=ON -DUSE_BUNDLED_JQ=ON -DBUILD_DRIVER=OFF
-DLUA_INCLUDE_DIR=${XBPS_CROSS_BASE}/usr/include/luajit-2.1
-DLUA_LIBRARY=libluajit-5.1.so -DCREATE_TEST_TARGETS=OFF"
make_cmd=make
hostmakedepends="wget pkg-config protobuf"
makedepends="LuaJIT-devel c-ares-devel elfutils-devel grpc-devel jsoncpp-devel
libcurl-devel libprotoc-devel libressl-devel ncurses-devel protobuf-devel
@ -27,6 +28,8 @@ case "$XBPS_TARGET_MACHINE" in
*-musl) configure_args+=" -DMUSL_OPTIMIZED_BUILD=On"
esac
export CMAKE_GENERATOR="Unix Makefiles"
# Avoid excessive warnings spam to the log
CXXFLAGS="-Wno-deprecated-declarations"