Matt Housh
6f6bf9efe6
Addresses CVE-2022-24769, see https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24769 and https://github.com/containerd/containerd/security/advisories/GHSA-c9cp-9c75-9v8c for details.
23 lines
629 B
Plaintext
23 lines
629 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.6.2
|
|
release=1
|
|
source=(http://jaeger.morpheus.net/linux/crux/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=de8046a5501db9e0e478e1c10cbcfb21af4c6b2d
|
|
install -d -m 0755 $PKG/usr/bin
|
|
install -m 0755 bin/* $PKG/usr/bin/
|
|
}
|