Matt Housh
95706a5c37
Fixes CVE-2024-21626, see the following for details: https://github.com/advisories/GHSA-xr7r-f8xq-vfvv https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv
23 lines
608 B
Plaintext
23 lines
608 B
Plaintext
# Description: A daemon to control runC
|
|
# URL: https://containerd.io/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: go btrfs-progs git libseccomp
|
|
|
|
name=containerd
|
|
version=1.7.13
|
|
release=1
|
|
source=(https://crux.nu/files/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
export GO111MODULE=auto
|
|
mkdir -p src/github.com/$name
|
|
cd src/github.com/$name
|
|
ln -s $SRC/$name-$version $name
|
|
cd $name
|
|
export GOPATH=$SRC
|
|
# use the long commit hash here
|
|
make GIT_COMMIT=7c3aca7a610df76212171d200ca3811ff6096eb8
|
|
install -d -m 0755 $PKG/usr/bin
|
|
install -m 0755 bin/* $PKG/usr/bin/
|
|
}
|