arch-packages/PKGBUILD

26 lines
568 B
Bash
Raw Normal View History

2018-05-03 17:02:03 +02:00
# Maintainer: Vincent Kobel (v@kobl.one)
_pkgname='gvisor'
pkgname="${_pkgname}-git"
pkgver=42.b5a0667
pkgrel=2
2018-05-03 17:02:03 +02:00
pkgdesc="User-space kernel, sandboxed container runtime"
arch=('x86_64')
url='https://github.com/google/gvisor'
license=('Apache-2.0')
sha256sums=('SKIP')
source=("git+https://github.com/google/${_pkgname}")
2018-05-03 17:02:03 +02:00
provides=('runsc')
makedepends=('bazel' 'python')
build() {
cd "${srcdir}/${_pkgname}"
bazel build runsc
}
package() {
cd "${srcdir}/${_pkgname}"
install -D ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc "${pkgdir}/usr/bin/runsc"
}