Matt Housh
1151b78485
Fixes CVE-2024-21626, see the following for details: https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv
26 lines
818 B
Plaintext
26 lines
818 B
Plaintext
# Description: a lightweight universal runtime container
|
|
# URL: https://github.com/opencontainers/runc
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: go libseccomp git
|
|
|
|
name=runc
|
|
version=1.1.12
|
|
release=1
|
|
source=(https://github.com/opencontainers/runc/archive/v${version}/$name-${version}.tar.gz \
|
|
https://crux.nu/files/$name-man-pages-$version.tar.xz)
|
|
|
|
build() {
|
|
mkdir -pv src/github.com/opencontainers
|
|
cd src/github.com/opencontainers
|
|
ln -sf $SRC/$name-$version $name
|
|
cd $name
|
|
export GOPATH=$SRC
|
|
export BUILDTAGS="seccomp"
|
|
# use the long commit hash here
|
|
make COMMIT=51d5e94601ceffbbd85688df1c928ecccbfa4685
|
|
|
|
install -D -m 0755 $name $PKG/usr/bin/$name
|
|
install -d -m 0755 $PKG/usr/share/man/man8
|
|
install -m 0644 $SRC/man8/* $PKG/usr/share/man/man8/
|
|
}
|