42 lines
1.6 KiB
Bash
42 lines
1.6 KiB
Bash
# Template file for 'sysdig'
|
|
pkgname=sysdig
|
|
version=0.26.7
|
|
revision=3
|
|
archs="i686 x86_64 ppc64le"
|
|
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"
|
|
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
|
|
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=c82aa4201e8ad37e22c780c27c28ac28359a8e677b4dc0ea295eb1452115d6c0
|
|
disable_parallel_build=yes
|
|
dkms_modules="sysdig ${version}"
|
|
nocross=yes
|
|
|
|
# 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 '1i#include <sys/select.h>' userspace/libsinsp/mesos_collector.h
|
|
sed -i '1i#include <sys/sysmacros.h>' userspace/libscap/scap_fds.c
|
|
|
|
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
|
|
}
|