45 lines
1.5 KiB
Bash
45 lines
1.5 KiB
Bash
# Template file for 'sysdig'
|
|
pkgname=sysdig
|
|
version=0.27.1
|
|
revision=10
|
|
build_style=cmake
|
|
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 openssl-devel ncurses-devel protobuf-devel
|
|
tbb-devel zlib-devel"
|
|
depends="dkms"
|
|
short_desc="Open source system-level exploration and troubleshooting tool"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="Apache-2.0, MIT, GPL-2.0-only"
|
|
homepage="http://www.sysdig.org/"
|
|
changelog="https://github.com/draios/sysdig/releases"
|
|
distfiles="https://github.com/draios/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=b9d05854493d245a7a7e75f77fc654508f720aab5e5e8a3a932bd8eb54e49bda
|
|
disable_parallel_build=yes
|
|
dkms_modules="sysdig ${version}"
|
|
nocross=yes
|
|
|
|
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"
|
|
|
|
post_extract() {
|
|
sed -i 's,"${DIR_ETC}/bash_completion.d",share/bash-completion/completions,g' scripts/CMakeLists.txt
|
|
sed -i '1iset(CMAKE_EXE_LINKER_FLAGS "-ltbb -lcurl")' CMakeLists.txt
|
|
}
|
|
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/usr/share/zsh/vendor-completions
|
|
vlicense COPYING
|
|
vlicense NOTICES
|
|
}
|