a3ef3a7b7b
Signed-off-by: Brad Erhart <>
26 lines
797 B
Bash
26 lines
797 B
Bash
# Maintainer: Brad Erhart <tocusso underscore malty at aleeas dot com>
|
|
|
|
pkgname=gvisor-bin
|
|
_pkgname=runsc
|
|
pkgver=20211019.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"
|
|
)
|
|
install="$pkgname.install"
|
|
source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname")
|
|
b2sums=(97429ebf1e2f8820e6b083621248f0ef7151a494e6acc9a4184c756a5448c5e8cc607b9d45ebaea5134220c6f38c74369ca01f64bdb619047d132c04b2dbc966)
|
|
|
|
package() {
|
|
install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname"
|
|
}
|