cf68a0972a
Signed-off-by: Brad Erhart <>
25 lines
777 B
Bash
25 lines
777 B
Bash
# Maintainer: Brad Erhart <tocusso underscore malty at aleeas dot com>
|
|
|
|
pkgname='gvisor-bin'
|
|
_pkgname='runsc'
|
|
pkgver=20211129.0
|
|
pkgrel=1
|
|
pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use'
|
|
arch=('x86_64')
|
|
url='https://gvisor.dev'
|
|
license=('Apache')
|
|
optdepends=('docker: for Docker runtime support')
|
|
provides=(
|
|
"${pkgname%-bin}"
|
|
"$_pkgname"
|
|
)
|
|
conflicts=(
|
|
"${pkgname%-bin}-git"
|
|
"$_pkgname"
|
|
)
|
|
source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$CARCH/$_pkgname")
|
|
b2sums=('22bd05f48f6984f9cf733a9e15350a00b5bab1d580d38248d3425ace3350c2d6734d8d3fc91dc5734c5a1300b9fda1e026b949b41226a9efc38176154cd5189a')
|
|
|
|
package() {
|
|
install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname"
|
|
}
|