# Template file for 'runc'
pkgname=runc
version=1.4.2
revision=1
build_style=go
go_import_path=github.com/opencontainers/runc
go_build_tags="seccomp apparmor"
go_ldflags="-X main.version=${version}"
make_check_args="-skip=(^TestValidateSysctlWithBindHostNetNS$|^TestNsenterValidPaths$|^TestNsenterChildLogging$|^TestFactoryLoadContainer$)"
hostmakedepends="pkg-config go-md2man"
makedepends="libseccomp-devel"
checkdepends="curl tar xz"
short_desc="CLI tool for spawning and running OCI containers"
maintainer="Orphaned <orphan@voidlinux.org>"
license="Apache-2.0"
homepage="https://github.com/opencontainers/runc"
changelog="https://github.com/opencontainers/runc/raw/main/CHANGELOG.md"
distfiles="https://github.com/opencontainers/runc/releases/download/v${version}/runc.tar.xz"
checksum=cc7b4630a2940cc844f01da81765a3fe6713ceb7f0dbf287f6b20fd89f55d05f

post_build() {
	make man
}

post_install() {
	make install-man PREFIX="${DESTDIR}/usr"
}

pre_check() {
	# Skip integration tests
	make_check_target=$(go list ./... | grep -v /integration)
}
