pkgname=bubblewrap pkgver=0.11.0 pkgrel=1 pkgdesc='Core execution engine for unprivileged containers that works as a setuid binary on kernels without user namespaces.' url='https://github.com/containers/bubblewrap' arch=('x86_64') license=('LGPLv2') depends=('libcap') makedepends=('libxslt' 'meson' 'ninja') source=("https://github.com/containers/bubblewrap/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz") sha256sums=('988fd6b232dafa04b8b8198723efeaccdb3c6aa9c1c7936219d5791a8b7a8646') build() { mkdir -p build cd build meson setup ../${pkgname}-${pkgver} \ --prefix=/usr \ --buildtype=release \ -Dtests=false \ -Dselinux=disabled ninja } package() { cd build DESTDIR=${pkgdir} ninja install }