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=20210906.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=(f1565c0a8cdd8817d491793b4ecd21141d7a79351856e3645e1dc94e7fb8366fab6e14a9422eb365404d538b67473bdc24150ec1ea80b03b7d00e873841c32af)
|
|
|
|
package() {
|
|
install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname"
|
|
}
|